apply_filters( 'found_sites_query', string $found_sites_query, WP_Site_Query $site_query )
- Since
- 4.6.0
Filters the query used to retrieve found site count.
Compatibility
- WordPress
- since 4.6.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$found_sites_querystring- SQL query. Default 'SELECT FOUND_ROWS()'.
$site_queryWP_Site_Query- The
WP_Site_Queryinstance.
Where this hook fires · 1
wp-includes/class-wp-site-query.php:745WP_Site_Query::set_found_sites()
Source code
* * @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 ); } } /**Changelog
Introduced in 4.6.0. Unchanged from 6.7.7 through 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.