Yoast\WP\SEO\Actions\Indexing
Abstract_Link_Indexing_Action::get_limit() public Yoast 1.0
Returns the number of texts that will be indexed in a single link indexing pass.
{} Это метод класса: Abstract_Link_Indexing_Action{}
Хуки из метода
Возвращает
Число
. The limit.
Использование
$Abstract_Link_Indexing_Action = new Abstract_Link_Indexing_Action(); $Abstract_Link_Indexing_Action->get_limit();
Код Abstract_Link_Indexing_Action::get_limit() Abstract Link Indexing Action::get limit Yoast 16.1.1
public function get_limit() {
/**
* Filter 'wpseo_link_indexing_limit' - Allow filtering the number of texts indexed during each link indexing pass.
*
* @api int The maximum number of texts indexed.
*/
return \apply_filters( 'wpseo_link_indexing_limit', 5 );
}