/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<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>
URL: http://wordpress.org/support/topic/recent-posts-in-sidebar