Yoast\WP\SEO\Actions\Importing\Aioseo

Aioseo_Validate_Data_Action::get_total_unindexed()publicYoast 1.0

Just checks if the action has been completed in the past.

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

Хуков нет.

Возвращает

int. 1 if it hasn't been completed in the past, 0 if it has.

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

$Aioseo_Validate_Data_Action = new Aioseo_Validate_Data_Action();
$Aioseo_Validate_Data_Action->get_total_unindexed();

Код Aioseo_Validate_Data_Action::get_total_unindexed() Yoast 22.4

public function get_total_unindexed() {
	return ( ! $this->get_completed() ) ? 1 : 0;
}