Advertisement
Guest User

Untitled

a guest
Jul 14th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <div id="featuredarea">
  2. <div id="featured-1">
  3. <?php
  4. query_posts('showposts=1&cat=698');
  5. while(have_posts()) : the_post();
  6. ?>
  7. <?php if ( has_post_thumbnail()) : ?>
  8. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
  9. <?php the_post_thumbnail(); ?>
  10. </a>
  11. <?php endif; ?>
  12. <ul>
  13. <li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
  14. <ul>
  15. </ul>
  16. </li>
  17. </ul>
  18. <?php endwhile; ?>
  19. </div>
  20. <div id="featured-2">
  21. <?php
  22. query_posts('showposts=1&cat=699');
  23. while(have_posts()) : the_post();
  24. ?>
  25. <?php if ( has_post_thumbnail()) : ?>
  26. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
  27. <?php the_post_thumbnail(); ?>
  28. </a>
  29. <?php endif; ?>
  30. <ul>
  31. <li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
  32. <ul>
  33. </ul>
  34. </li>
  35. </ul>
  36. <?php endwhile; ?></div>
  37. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement