Yoast\WP\SEO\Integrations\Front_End
Theme_Titles::title() public Yoast 1.0
Запрещена (устарела) с версии 14.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Filters the title for woo_title and the thematic_doctitle.
{} Это метод класса: Theme_Titles{}
FUNC_MORE_INFO
Возвращает
Строку. The title.
Использование
$Theme_Titles = new Theme_Titles(); $Theme_Titles->title( $title );
- $title(строка) (обязательный)
- The title.
Список изменений
Устарела с | 14.0 |
Код Theme_Titles::title() Theme Titles::title Yoast 15.6.2
public function title( $title ) {
\_deprecated_function(
__METHOD__,
'WPSEO 14.0',
\esc_html__(
'a theme that has proper title-tag theme support, or adapt your theme to have that support',
'wordpress-seo'
)
);
return $title;
}