Yoast\WP\SEO\Presentations
Indexable_Presentation::generate_open_graph_title() public Yoast 1.0
Generates the open graph title.
{} Это метод класса: Indexable_Presentation{}
Хуков нет.
Возвращает
Строку. The open graph title.
Использование
$Indexable_Presentation = new Indexable_Presentation(); $Indexable_Presentation->generate_open_graph_title();
Код Indexable_Presentation::generate_open_graph_title() Indexable Presentation::generate open graph title Yoast 15.6.2
public function generate_open_graph_title() {
if ( $this->model->open_graph_title ) {
return $this->model->open_graph_title;
}
return $this->title;
}