wppaste
WordPress

apply_filters( 'found_networks_query', string $found_networks_query, WP_Network_Query $network_query )

Since
4.6.0
Filters the query used to retrieve found network count.

Parameters

$found_networks_querystring
SQL query. Default 'SELECT FOUND_ROWS()'.
$network_queryWP_Network_Query
The WP_Network_Query instance.

Fired at · 1

  • wp-includes/class-wp-network-query.php:540WP_Network_Query::set_found_networks()

Source

			 *			 * @since 4.6.0			 *			 * @param string           $found_networks_query SQL query. Default 'SELECT FOUND_ROWS()'.			 * @param WP_Network_Query $network_query        The `WP_Network_Query` instance.			 */			$found_networks_query = apply_filters( 'found_networks_query', 'SELECT FOUND_ROWS()', $this ); 			$this->found_networks = (int) $wpdb->get_var( $found_networks_query );		}	} 	/**

History

Introduced in 4.6.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.