Advertisement
Guest User

874412

a guest
Nov 30th, 2011
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. $temp = $wp_query;
  2. $wp_query= null;
  3. $wp_query = new WP_Query();
  4. $wp_query->query('showposts=10'.'&paged='.$paged.'&cat=3');
  5. while($wp_query->have_posts()) : $wp_query->the_post();
  6.  
  7. <!-- post model -->
  8.  
  9. endwhile;
  10.  
  11. <!-- navigation here -->
  12. <div class="navigation">
  13. <span class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></span>
  14. <span class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></span>
  15. </div>
  16.  
  17. <?php $wp_query = null; $wp_query = $temp;?>
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement