__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Yoast\WP\SEO\Presenters;
use Yoast\WP\SEO\Presentations\Indexable_Presentation;
/**
* Presenter class for the document title.
*/
class Title_Presenter extends Abstract_Indexable_Tag_Presenter {
/**
* The tag key name.
*
* @var string
*/
protected $key = 'title';
/**
* The tag format including placeholders.
*
* @var string
*/
protected $tag_format = '<title>%s</title>';
/**
* The method of escaping to use.
*
* @var string
*/
protected $escaping = 'html';
/**
* Gets the raw value of a presentation.
*
* @return string The raw value.
*/
public function get() {
// This ensures backwards compatibility with other plugins using this filter as well.
\add_filter( 'pre_get_document_title', [ $this, 'get_title' ], 15 );
$title = \wp_get_document_title();
\remove_filter( 'pre_get_document_title', [ $this, 'get_title' ], 15 );
return $title;
}
/**
* Returns a tag in the head.
*
* @return string The tag.
*/
public function present() {
$value = $this->get();
if ( \is_string( $value ) && $value !== '' ) {
return \sprintf( $this->tag_format, $this->escape_value( $value ) );
}
return '';
}
/**
* Returns the presentation title.
*
* @return string The title.
*/
public function get_title() {
$title = $this->replace_vars( $this->presentation->title );
/**
* Filter: 'wpseo_title' - Allow changing the Yoast SEO generated title.
*
* @param string $title The title.
* @param Indexable_Presentation $presentation The presentation of an indexable.
*/
$title = \apply_filters( 'wpseo_title', $title, $this->presentation );
$title = $this->helpers->string->strip_all_tags( $title );
return \trim( $title );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| admin | Folder | 0775 |
|
|
| debug | Folder | 0775 |
|
|
| open-graph | Folder | 0775 |
|
|
| slack | Folder | 0775 |
|
|
| Folder | 0775 |
|
||
| webmaster | Folder | 0775 |
|
|
| abstract-indexable-presenter.php | File | 1.55 KB | 0775 |
|
| abstract-indexable-tag-presenter.php | File | 1.75 KB | 0775 |
|
| abstract-presenter.php | File | 377 B | 0775 |
|
| breadcrumbs-presenter.php | File | 7.54 KB | 0775 |
|
| canonical-presenter.php | File | 1.12 KB | 0775 |
|
| meta-author-presenter.php | File | 1.34 KB | 0775 |
|
| meta-description-presenter.php | File | 1.84 KB | 0775 |
|
| rel-next-presenter.php | File | 1.63 KB | 0775 |
|
| rel-prev-presenter.php | File | 1.69 KB | 0775 |
|
| robots-presenter.php | File | 711 B | 0775 |
|
| robots-txt-presenter.php | File | 4.18 KB | 0775 |
|
| schema-presenter.php | File | 1.45 KB | 0775 |
|
| score-icon-presenter.php | File | 944 B | 0775 |
|
| title-presenter.php | File | 1.72 KB | 0775 |
|
| url-list-presenter.php | File | 1.27 KB | 0775 |
|