Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.                                 <?php while ( have_posts() ) : the_post(); ?>
  2.  
  3.                                         <div id="news">
  4.                                                 <article id="post-<?php echo $post->ID ?>" class="article">
  5.                                                         <header class="article-header">
  6.                                                                 <h1 class="article-title"><?php the_title(); ?></span>
  7.                                                         </header>
  8.                                                         <div class="article-content">
  9.                                                                 <?php the_post_thumbnail(); ?>
  10.                                                                 <?php the_excerpt(); ?>
  11.                                                         </div>
  12.                                                 </article>
  13.                                         </div>
  14.  
  15.                                 <?php endwhile; ?>