Hello. You will need to take a look at my recent posts here to know what I'm talking about:
http://www.vistarewired.com/test2
I want to know how I can make it so that there is a space between each entry like here:
On vistarewired, I have to do it by hand. If I can edit the widget properly, it won't be such a hassle. This is the code for the widget:
function widget_recent_entries($args) {
extract($args);
$title = __('Recent Posts', 'widgets');
$r = new WP_Query('showposts=5');
if ($r->have_posts()) :
?><p>
<?php echo $before_widget; ?>
<?php echo $before_title . $title . $after_title; ?>
- <p>
- "><?php if ( get_the_title() ) the_title(); else the_ID(); ?> <p>
<?php while ($r->have_posts()) : $r->the_post(); ?>
<?php endwhile; ?> <p></p>
<p></p>
<?php echo $after_widget; ?> <p></p>
<?php
endif;
}