WP_Site_Query::set_found_sites()privateWP 4.6.0

Populates found_sites and max_num_pages properties for the current query if the limit clause was used.

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

Хуки из метода

Возвращает

null. Ничего (null).

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

// private - только в коде основоного (родительского) класса
$result = $this->set_found_sites();

Заметки

  • Global. wpdb. $wpdb WordPress database abstraction object.

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

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

Код WP_Site_Query::set_found_sites() WP 6.4.3

private function set_found_sites() {
	global $wpdb;

	if ( $this->query_vars['number'] && ! $this->query_vars['no_found_rows'] ) {
		/**
		 * Filters the query used to retrieve found site count.
		 *
		 * @since 4.6.0
		 *
		 * @param string        $found_sites_query SQL query. Default 'SELECT FOUND_ROWS()'.
		 * @param WP_Site_Query $site_query        The `WP_Site_Query` instance.
		 */
		$found_sites_query = apply_filters( 'found_sites_query', 'SELECT FOUND_ROWS()', $this );

		$this->found_sites = (int) $wpdb->get_var( $found_sites_query );
	}
}