Yoast\WP\SEO\Actions\Importing\Aioseo

Aioseo_Posts_Importing_Action::simple_import_post()publicYoast 1.0

Minimally transforms data to be imported.

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

Хуков нет.

Возвращает

Строку. The transformed meta data.

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

$Aioseo_Posts_Importing_Action = new Aioseo_Posts_Importing_Action();
$Aioseo_Posts_Importing_Action->simple_import_post( $aioseo_data, $aioseo_key );
$aioseo_data(массив) (обязательный)
All of the AIOSEO data to be imported.
$aioseo_key(строка) (обязательный)
The AIOSEO key that contains the setting we're working with.

Код Aioseo_Posts_Importing_Action::simple_import_post() Yoast 22.4

public function simple_import_post( $aioseo_data, $aioseo_key ) {
	return $this->simple_import( $aioseo_data[ $aioseo_key ] );
}