Advertisement
alchymyth

Untitled

Mar 8th, 2011
654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. $catid = get_query_var('cat');  
  3. $args = array(
  4. 'posts_per_page' => -1,
  5. 'category__in' => $catid,
  6. 'paged' => get_query_var('paged')
  7. );
  8. query_posts( $args );
  9.  
  10. if (have_posts()) : ?>
  11. <ul>
  12. <?php while(have_posts()) : the_post(); ?>
  13.  
  14. <li>
  15. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
  16. </li>
  17.  
  18. <?php endwhile; endif; wp_reset_query(); ?>
  19. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement