Advertisement
johndove523

Correct 'template-home.php' code

Jun 15th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Template Name: Homepage
  5. */
  6.  
  7. ?>
  8.  
  9. <?php get_header(); ?>
  10.  
  11. <section class="row">
  12.  
  13. <div id="featured">
  14.  
  15. <!--MAIN EVENTS-->
  16. <?php query_posts('showposts=3&cat=4'); ?>
  17. <?php while (have_posts()) : the_post(); ?>
  18. <div class="ic_container mainevent">
  19. <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail( array(287,200) ); ?></a>
  20. <div class="ic_caption">
  21. <div class="excerptcontent"><?php the_excerpt() ?></div>
  22. </div><!--end 'ic_caption'-->
  23. <h3 class="main_event"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title() ?></a></h3>
  24. </div><!--end 'main event 1'-->
  25. <?php endwhile; ?>
  26. </div><!--end MAIN EVENTS - 'featured'-->
  27.  
  28.  
  29. <div class="eightcol">
  30. <?php query_posts('cat=5'); ?>
  31. <?php while (have_posts()) : the_post(); ?>
  32. <div class="home-page-article">
  33. <h2><?php the_title(); ?></h2>
  34. <?php the_content(); ?>
  35. </div>
  36. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement