Advertisement
trmash

Wordpress Loop Issue

May 24th, 2011
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.79 KB | None | 0 0
  1. <?php /* Suggestions welcome to tidy up this loop */ ?>
  2.  
  3. <?php /* Show ONE post from category 7 in div#featured */ ?>
  4. <?php if (have_posts()) : query_posts('cat=7 post&&showposts=1'); ?>
  5. <?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "articleimg", TRUE); ?>
  6.  
  7. <div id="featured">
  8. <img src="<?php echo $fimg; ?>" width="306px" height="365px" alt="<?php the_title(); ?>" /><?php echo $fdesc; ?>
  9.   <div class="overlay">
  10.     <p><strong><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong><br />
  11.       <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_excerpt(); ?></a></p>
  12.   </div>
  13. </div>
  14.  
  15. <?php endwhile; ?>
  16.  
  17. <?php endif; ?>
  18.  
  19. <?php /* Show THREE post excerpts from all categories except category 7 in div#articles */ ?>
  20. <div id="articles">
  21. <?php if (have_posts()) :
  22. $count = 4;
  23. query_posts($query_string.'&cat=-7,-11');
  24.     while (have_posts()) : the_post(); ?>
  25. <?php
  26. if (($count < 7)) { ?>
  27. <div class="post" id="post-<?php the_ID(); ?>">
  28.   <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  29.     <?php the_title(); ?>
  30.     </a></h2>
  31.   <?php the_excerpt(); ?>
  32.   <p class="comments">
  33.     <?php comments_popup_link('0', '1', '%'); ?>
  34.   </p>
  35. </div>
  36.  
  37.  
  38. <?php /* Show the next four post TITLES ONLY excerpts from all categories except category 7 in an UNORDERED LIST, still within div#articles */ ?>
  39.  
  40. <?php } else if (($count < 11)) { ?>
  41. <?php /* Where can I put the <ul>? */ ?>
  42. <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
  43. <?php } ?>
  44.  
  45. <?php $count++; endwhile; ?>
  46. <?php endif; ?>
  47. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement