Need help on wordpress blog

Discussion in 'WordPress' started by kks_krishna, Apr 20, 2007.

  1. #1
    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.
     
    kks_krishna, Apr 20, 2007 IP
  2. Monty

    Monty Peon

    Messages:
    1,363
    Likes Received:
    132
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    Monty, Apr 20, 2007 IP
  3. rugjeff

    rugjeff Peon

    Messages:
    95
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can also use the latest comments plugin found here. Good luck.
     
    rugjeff, Apr 20, 2007 IP