WPSEO_Import_Smartcrawl_SEO::import_opengraph()protectedYoast 1.0

Imports the OpenGraph meta keys saved by Smartcrawl.

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

Хуков нет.

Возвращает

true|false. Import status.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->import_opengraph();

Код WPSEO_Import_Smartcrawl_SEO::import_opengraph() Yoast 22.4

protected function import_opengraph() {
	$this->social_keys = [
		'title'       => 'opengraph-title',
		'description' => 'opengraph-description',
		'images'      => 'opengraph-image',
	];
	return $this->post_find_import( '_wds_opengraph' );
}