Yoast\WP\SEO\Helpers

Indexing_Helper::set_started()publicYoast 1.0

Sets the start time when the indexing process has started but not completed.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$Indexing_Helper = new Indexing_Helper();
$Indexing_Helper->set_started( $timestamp );
$timestamp(int|true|false) (обязательный)
The start time when the indexing process has started but not completed, false otherwise.

Код Indexing_Helper::set_started() Yoast 22.4

public function set_started( $timestamp ) {
	$this->options_helper->set( 'indexing_started', $timestamp );
}