Revision: 45614
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at May 5, 2011 01:23 by serialk89
Initial Code
<div id="recentPost">
<ul>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
<li>
<div class="column <?php if($i == 4 || $i == 8 || $i == 12 ): ?>last<?php endif; ?>">
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) : /* if post has post thumbnail */ ?>
<div class="image"><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('related-thumbnail'); ?></a></div>
<?php endif; ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
</div><!--column-->
</li>
<?php $i++; ?>
<?php endwhile; ?>
</ul>
</div>
Initial URL
Initial Description
Initial Title
Wordpress - Recent Post
Initial Tags
post, wordpress
Initial Language
PHP