Yoast\WP\SEO\Analytics\Domain
Missing_Indexable_Bucket::to_array
Returns the array representation of all indexable counts.
Метод класса: Missing_Indexable_Bucket{}
Хуков нет.
Возвращает
Массив.
Использование
$Missing_Indexable_Bucket = new Missing_Indexable_Bucket(); $Missing_Indexable_Bucket->to_array();
Код Missing_Indexable_Bucket::to_array() Missing Indexable Bucket::to array Yoast 27.7
public function to_array() {
return \array_map(
static function ( $item ) {
return $item->to_array();
},
$this->missing_indexable_counts,
);
}