Advertisement
zied86

pagination wordpress

Jan 23rd, 2013
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. query_posts('orderby=ID&order=desc&post_type=custom_post');
  3. theme_pagination();
  4.  
  5. while (have_posts()) : the_post();?>
  6.     <a href="<?php echo get_permalink(); ?>"><strong><?php the_title(); ?></strong></a>
  7.     <hr />
  8. <?php endwhile;?>
  9.  
  10. <?php theme_pagination(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement