WC_Query::adjust_posts_count()publicWC 4.4.0

This function used to be hooked to found_posts and adjust the posts count when the filtering by attribute widget was used and variable products were present. Now it isn't hooked anymore and does nothing but return the input unchanged, since the pull request in which it was introduced has been reverted.

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

Хуков нет.

Возвращает

int. Adjusted posts count.

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

$WC_Query = new WC_Query();
$WC_Query->adjust_posts_count( $count, $query );
$count(int) (обязательный)
Original posts count, as supplied by the found_posts filter.
$query(WP_Query) (обязательный)
The current WP_Query object.

Список изменений

С версии 4.4.0 Введена.

Код WC_Query::adjust_posts_count() WC 8.7.0

public function adjust_posts_count( $count, $query ) {
	return $count;
}