Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: found_sites_query

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
679           if ( $this->query_vars['number'] && ! $this->query_vars['no_found_rows'] ) {
680                /**
681                 * Filters the query used to retrieve found site count.
682                 *
683                 * @since 4.6.0
684                 *
685                 * @param string        $found_sites_query SQL query. Default 'SELECT FOUND_ROWS()'.
686                 * @param WP_Site_Query $site_query        The `WP_Site_Query` instance.
687                 */
688                $found_sites_query = apply_filters( 'found_sites_query', 'SELECT FOUND_ROWS()', $this );
689
690                $this->found_sites = (int) $wpdb->get_var( $found_sites_query );
691           }
692      }
693
694      /**
695       * Used internally to generate an SQL string for searching across multiple columns.
696       *
697       * @since 4.6.0