Revision: 34593
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 26, 2010 02:03 by raz
Initial Code
<h3>Recent Stories from Dental Blog</h3>
<ul>
<?php
$archive_query = new WP_Query('showposts=4');
while ($archive_query->have_posts()) : $archive_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
Initial URL
http://wordpress.org/support/topic/recent-posts-in-sidebar
Initial Description
Initial Title
Latest posts in sidebar
Initial Tags
Initial Language
PHP