Hey,
I am trying to show the 3 latest posts on my homepage, and have tried with this code:-
But it does not seem to work, it shows all of the posts. can anybody help me fix this problem..?PHP Code:<?php
require('blog/wp-blog-header.php');
while (have_posts()) : the_post('showposts=3'); ?>
<strong id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" style="color:#fff" rel="bookmark" title="Permalink to <?php the_title_attribute(); ?>">
<?php the_title(); ?></a></strong>
<br/>
<small><?php the_time('j F Y') ?></small>
<br/>
<?php endwhile; ?>
Regards







Bookmarks