Yoast\WP\SEO\Helpers
Indexing_Helper::get_filtered_unindexed_count() public Yoast 1.0
Returns the total number of unindexed objects and applies a filter for third party integrations.
{} Это метод класса: Indexing_Helper{}
Хуки из метода
Возвращает
Число. The total number of unindexed objects.
Использование
$Indexing_Helper = new Indexing_Helper(); $Indexing_Helper->get_filtered_unindexed_count();
Код Indexing_Helper::get_filtered_unindexed_count() Indexing Helper::get filtered unindexed count Yoast 15.7
public function get_filtered_unindexed_count() {
/**
* Filter: 'wpseo_indexing_get_unindexed_count' - Allow changing the amount of unindexed objects.
*
* @param int $unindexed_count The amount of unindexed objects.
*/
return \apply_filters( 'wpseo_indexing_get_unindexed_count', $this->get_unindexed_count() );
}