Advertisement
Guest User

Untitled

a guest
Jul 19th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function jh_popularity_sort_query($query) {
  2. if ( ! $query->is_main_query() ) {
  3. return $query;
  4. } else {
  5. $query->set( 'orderby', 'date' );
  6. }
  7. return $query;
  8. }
  9. add_action('pre_get_posts', 'jh_popularity_sort_query');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement