Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WP_Comment_Query::set_found_comments() WordPress Method
The WP_Comment_Query::set_found_comments() method is used to set the number of comments found for the current query. This is used for pagination purposes. The value is stored in the query object and can be retrieved using the WP_Comment_Query::found_comments() method.
WP_Comment_Query::set_found_comments() #
Populates found_comments and max_num_pages properties for the current query if the limit clause was used.
Source
File: wp-includes/class-wp-comment-query.php
private function set_found_comments() { global $wpdb; if ( $this->query_vars['number'] && ! $this->query_vars['no_found_rows'] ) { /** * Filters the query used to retrieve found comment count. * * @since 4.4.0 * * @param string $found_comments_query SQL query. Default 'SELECT FOUND_ROWS()'. * @param WP_Comment_Query $comment_query The `WP_Comment_Query` instance. */ $found_comments_query = apply_filters( 'found_comments_query', 'SELECT FOUND_ROWS()', $this ); $this->found_comments = (int) $wpdb->get_var( $found_comments_query ); } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |