Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: found_posts

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
1434                $cwhere = apply_filters('comment_feed_where', "WHERE comment_post_ID = '{$this->posts[0]->ID}' AND comment_approved = '1'");
1435                $comments_request = "SELECT $wpdb->comments.* FROM $wpdb->comments $cjoin $cwhere ORDER BY comment_date_gmt DESC LIMIT " . get_option('posts_per_rss');
1436                $this->comments = $wpdb->get_results($comments_request);
1437                $this->comment_count = count($this->comments);
1438           }
1439
1440           if ( !empty($limits) ) {
1441                $found_posts_query = apply_filters( 'found_posts_query', 'SELECT FOUND_ROWS()' );
1442                $this->found_posts = $wpdb->get_var( $found_posts_query );
1443                $this->found_posts = apply_filters( 'found_posts', $this->found_posts );
1444                $this->max_num_pages = ceil($this->found_posts / $q['posts_per_page']);
1445           }
1446
1447           // Check post status to determine if post should be displayed.
1448           if ( !empty($this->posts) && ($this->is_single || $this->is_page) ) {
1449                $status = get_post_status($this->posts[0]);
1450                //$type = get_post_type($this->posts[0]);
1451                if ( ('publish' != $status) ) {
1452                     if ( ! is_user_logged_in() ) {