1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Wordpress Blog - Basic Question

Discussion in 'Link Development' started by jj1, Feb 23, 2010.

  1. #1
    I have started a Wordpress blog my blog and want to have the recent blog posts in a list down the right hand column.

    How do you do this? I'm sure it's really simple when you know how - at the moment, the system gives a drop down list with the month and then you have to click the month to get posts for that month.

    I feel a list of recent posts down the side would help spread link juice throughout the site.
     
    jj1, Feb 23, 2010 IP
  2. geester1

    geester1 Well-Known Member

    Messages:
    2,250
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    105
    #2
    I think you might want to checkout some widgets, these allow you to do all sorts of things like this.
     
    geester1, Feb 23, 2010 IP
  3. jj1

    jj1 Active Member

    Messages:
    892
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    60
    #3
    geester1 - many thanks. Sorry for such a noobie question re wordpress, but how do you go about getting the right Wordpress widget? - You can gather I've scarely used wordpress other than just a really basic blog!!
     
    jj1, Feb 24, 2010 IP
  4. bunbunx2

    bunbunx2 Peon

    Messages:
    613
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    i think most recent posts widget can do the job..
     
    bunbunx2, Feb 24, 2010 IP
  5. martinglover

    martinglover Active Member

    Messages:
    240
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    80
    #5
    Go to Appearance > Widgets > and there you should have a recent posts widget option. It will depend on the theme you are using though as some do not allow widgets.
     
    martinglover, Feb 24, 2010 IP
    jj1 likes this.
  6. expertofexperts

    expertofexperts Active Member

    Messages:
    1,040
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    80
    #6
    Yes, in WP there is an inbuilt functionality where you can choose to use recent blog posts in the sidebars. Better check your admin panel and you will find many more useful tools and widgets.
     
    expertofexperts, Feb 25, 2010 IP
  7. DF200

    DF200 Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    You need to go to the administrative panel, and check out the widgets, as has been stated already. However, different themes offer different levels of customization. Play around with a few themes if you can't get yours to your liking. One of the most customizable is Athualpa (or something like that, I can't spell it off hand)
     
    DF200, Feb 25, 2010 IP
  8. DomainDomain

    DomainDomain Active Member

    Messages:
    898
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    78
    #8
    This will allow you to show your recent posts, from a specific category and offset the displayed list from you home page. Put this code into your sidebar.php in theme editor.

    <ul>
     <?php
     global $post;
     $myposts = get_posts('numberposts=5&offset=1&category=1');
     foreach($myposts as $post) :
       setup_postdata($post);
     ?>
        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
     <?php endforeach; ?>
     </ul> 
    
    PHP:
    HTH
    DD
     
    DomainDomain, Feb 25, 2010 IP
    jj1 likes this.
  9. jj1

    jj1 Active Member

    Messages:
    892
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    60
    #9
    Many thanks all for your help - martinglover -
    just the info I needed, now got it working! Easy when you know how. DomainDomain - keeping your tips for future use.
     
    jj1, Feb 26, 2010 IP