WPSEO_Plugin_Importer::run_detect()
Detects whether an import for this plugin is needed.
Метод класса: WPSEO_Plugin_Importer{}
Хуков нет.
Возвращает
WPSEO_Import_Status
. Import status object.
Использование
$WPSEO_Plugin_Importer = new WPSEO_Plugin_Importer(); $WPSEO_Plugin_Importer->run_detect();
Код WPSEO_Plugin_Importer::run_detect() WPSEO Plugin Importer::run detect Yoast 23.8
public function run_detect() { $this->status = new WPSEO_Import_Status( 'detect', false ); if ( ! $this->detect() ) { return $this->status; } return $this->status->set_status( true ); }