Yoast\WP\SEO\Presentations

Indexable_Post_Type_Presentation::generate_open_graph_images()publicYoast 1.0

Generates the open graph images.

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

Хуков нет.

Возвращает

Массив. The open graph images.

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

$Indexable_Post_Type_Presentation = new Indexable_Post_Type_Presentation();
$Indexable_Post_Type_Presentation->generate_open_graph_images();

Код Indexable_Post_Type_Presentation::generate_open_graph_images() Yoast 22.4

public function generate_open_graph_images() {
	if ( \post_password_required() ) {
		return [];
	}

	return parent::generate_open_graph_images();
}