Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: found_networks_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
505           if ( $this->query_vars['number'] && ! $this->query_vars['no_found_rows'] ) {
506                /**
507                 * Filters the query used to retrieve found network count.
508                 *
509                 * @since 4.6.0
510                 *
511                 * @param string           $found_networks_query SQL query. Default 'SELECT FOUND_ROWS()'.
512                 * @param WP_Network_Query $network_query        The `WP_Network_Query` instance.
513                 */
514                $found_networks_query = apply_filters( 'found_networks_query', 'SELECT FOUND_ROWS()', $this );
515
516                $this->found_networks = (int) $wpdb->get_var( $found_networks_query );
517           }
518      }
519
520      /**
521       * Used internally to generate an SQL string for searching across multiple columns.
522       *
523       * @since 4.6.0