Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: found_posts_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
2265                $corderby = apply_filters('comment_feed_orderby', 'comment_date_gmt DESC');
2266                $corderby = ( ! empty( $corderby ) ) ? 'ORDER BY ' . $corderby : '';
2267                $climits = apply_filters('comment_feed_limits', 'LIMIT ' . get_option('posts_per_rss'));
2268                $comments_request = "SELECT $wpdb->comments.* FROM $wpdb->comments $cjoin $cwhere $cgroupby $corderby $climits";
2269                $this->comments = $wpdb->get_results($comments_request);
2270                $this->comment_count = count($this->comments);
2271           }
2272
2273           if ( !empty($limits) ) {
2274                $found_posts_query = apply_filters( 'found_posts_query', 'SELECT FOUND_ROWS()' );
2275                $this->found_posts = $wpdb->get_var( $found_posts_query );
2276                $this->found_posts = apply_filters( 'found_posts', $this->found_posts );
2277                $this->max_num_pages = ceil($this->found_posts / $q['posts_per_page']);
2278           }
2279
2280           // Check post status to determine if post should be displayed.
2281           if ( !empty($this->posts) && ($this->is_single || $this->is_page) ) {
2282                $status = get_post_status($this->posts[0]);
2283                //$type = get_post_type($this->posts[0]);