Yoast\WP\SEO\Presentations

Indexable_Presentation::generate_open_graph_url()publicYoast 1.0

Generates the open graph url.

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

Хуков нет.

Возвращает

Строку. The open graph url.

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

$Indexable_Presentation = new Indexable_Presentation();
$Indexable_Presentation->generate_open_graph_url();

Код Indexable_Presentation::generate_open_graph_url() Yoast 22.4

public function generate_open_graph_url() {
	if ( $this->model->canonical ) {
		return $this->model->canonical;
	}

	return $this->permalink;
}