Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: posts_where_paged

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
536                          $where .= " AND post_date >= '$end_date' AND post_date <= '$start_date'";
537                     } else {
538                          $where .= " AND post_date >= '$end_date'";
539                     }
540                }
541           }
542
543           // Apply post-paging filters on where and join.  Only plugins that
544           // manipulate paging queries should use these hooks.
545           $where = apply_filters('posts_where_paged', $where);
546           $where .= " GROUP BY $wpdb->posts.ID";
547           $join = apply_filters('posts_join_paged', $join);
548           $orderby = "post_" . $q['orderby'];
549           $orderby = apply_filters('posts_orderby', $orderby); 
550           $request = " SELECT $distinct * FROM $wpdb->posts $join WHERE 1=1".$where." ORDER BY " . $orderby . " $limits";
551
552           $this->posts = $wpdb->get_results($request);
553
554           // Check post status to determine if post should be displayed.