Yoast\WP\SEO\Integrations\Admin
Background_Indexing_Integration::get_shutdown_limit() protected Yoast 1.0
Retrieves the shutdown limit. This limit is the amount of indexables that is generated in the background.
{} Это метод класса: Background_Indexing_Integration{}
Хуки из метода
Возвращает
Число. The shutdown limit.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_shutdown_limit();
Код Background_Indexing_Integration::get_shutdown_limit() Background Indexing Integration::get shutdown limit Yoast 15.6.2
protected function get_shutdown_limit() {
/**
* Filter 'wpseo_shutdown_indexation_limit' - Allow filtering the number of objects that can be indexed during shutdown.
*
* @api int The maximum number of objects indexed.
*/
return \apply_filters( 'wpseo_shutdown_indexation_limit', 25 );
}