Yoast\WP\SEO\Presentations

Indexable_Search_Result_Page_Presentation::generate_title()publicYoast 1.0

Generates the title.

Метод класса: Indexable_Search_Result_Page_Presentation{}

Хуков нет.

Возвращает

Строку. The title.

Использование

$Indexable_Search_Result_Page_Presentation = new Indexable_Search_Result_Page_Presentation();
$Indexable_Search_Result_Page_Presentation->generate_title();

Код Indexable_Search_Result_Page_Presentation::generate_title() Yoast 22.4

public function generate_title() {
	if ( $this->model->title ) {
		return $this->model->title;
	}

	return $this->options->get_title_default( 'title-search-wpseo' );
}