HI, I have wordpress blog on my site. I want to display Latest 5 blog posts in my site home page. How can I reterive and display it. Please help me.
Put something like this in your template : <?php if ( is_home() ) { ?> <?php wp_get_archives('type=postbypost&limit=5'); ?> <?php } ?> Code (markup): Should do the trick.