Advertisement
jan_dembowski

reverse-post-order.php

Jan 21st, 2012
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Reverse the query to ascending order
  4. */
  5.  
  6. add_action( 'wp_head' , 'mh_reverse_query' );
  7. function mh_reverse_query() {
  8. global $query_string;
  9. if ( is_home() ) {
  10. query_posts($query_string . "&order=ASC");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement