up vote 2 down vote favorite
share [g+] share [fb]

I have installed wordpress on my site located at www.example.com/blog. on www.example.com I'd like to retrieve the top 5 latest blog posts and display date, url and blog title. Is this possible?

This means I want to get the blog posts from outside the wordpress installation using php and do a loop.

link|improve this question

You are not telling us what you want to do - where you want to do it from. – Emil Jun 6 '10 at 10:43
@Emil, are you serious? others understood the question... – Shawn Mclean Jun 6 '10 at 14:44
I see nothing wrong with the question. – Pekka Jun 6 '10 at 14:52
@Shawn & @Pekka: In the first revision, he said nothing about how he wanted it done or from where, other than "I have a blog. I want to see the latest 5 posts with date, url and title.", so I thought that was a bit to little information. – Emil Jun 7 '10 at 5:17
feedback

3 Answers

up vote 1 down vote accepted

Yes you can use the RSS feed of your blog. Its a standard wordpress feature. Use a javascript (or some server side) rss client to fetch the top 5 entries from RSS feed and show it on your homepage.One such script is http://p3k.org/rss/

link|improve this answer
feedback
<?php
    $loop = new WP_Query('showposts=5&orderby=ID&order=DESC');
    if($loop->have_posts()): while($loop->have_posts()): $loop->the_post();
?>
    <div class="post" id="post-<?php the_ID(); ?>">
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
        <span class="post-meta">
            <?php the_time('F jS, Y'); ?> by <?php the_author_posts_link(); ?>
        </span>
    </div>
<?php endwhile; else: ?>
    No recent posts yet!
<?php endif; ?>

See: WordPress Loop, query_posts(), WP_Query(). There are also plugins to get recent posts.

link|improve this answer
2  
@Shawn by including wp-blog-header.php – Pekka Jun 6 '10 at 14:52
@Pekka: thanks. – Shawn Mclean Jun 6 '10 at 14:57
Wordpress 2.9.2 does not allow calls from outside, i'm going with the rss feed method. – Shawn Mclean Jun 6 '10 at 16:58
feedback

Use WP_Query like sugested by Sepehr and after you include wp-blog-header.php add this:

header("HTTP/1.1 200 OK");

This overrides WP's security check.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.