Advertisement
Guest User

category.php

a guest
Dec 5th, 2013
2,296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <div id="main_area">
  2.  
  3. <?php if (have_posts()) : ?>
  4.  
  5. <?php if ( is_category('abcd')) { ?>
  6. <h2><img src="<?php bloginfo('stylesheet_directory'); ?>/images/XXXX.png" alt="XXXX" /></h2>
  7.  
  8.  
  9. <?php query_posts($query_string .'&posts_per_page=5'); ?>
  10. <?php while (have_posts()) : the_post(); ?>
  11. <ul id="news_list">
  12.  
  13.  
  14.  
  15. <?php if ( post_custom('url')!="" && post_custom('url')!="#") { ?>
  16. <li><span><?php the_time('Y.m.d'); ?></span><br /><a href="<?php echo post_custom('url'); ?>" target="<?php echo post_custom('target'); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></li>
  17.  
  18. <? } else { ?>
  19. <li><span><?php the_time('Y.m.d'); ?></span><br /><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></li>
  20. <? } //END if ?>
  21.  
  22.  
  23.  
  24. </ul>
  25. <?php endwhile; ?>
  26. <div class="navlink">
  27. <?php posts_nav_link(' ','&laquo;','&raquo;');?>
  28. </div>
  29.  
  30. <?php } ?>
  31.  
  32.  
  33.  
  34. <?php endif; ?>
  35.  
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement