Yoast\WP\SEO\Helpers

Indexing_Helper::is_initial_indexing()publicYoast 1.0

Gets a boolean that indicates whether or not the site still has to be indexed for the first time.

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

Хуков нет.

Возвращает

true|false. Whether the site still has to be indexed for the first time.

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

$Indexing_Helper = new Indexing_Helper();
$Indexing_Helper->is_initial_indexing();

Код Indexing_Helper::is_initial_indexing() Yoast 22.4

public function is_initial_indexing() {
	return $this->options_helper->get( 'indexing_first_time', true );
}