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.
I think you might want to checkout some widgets, these allow you to do all sorts of things like this.
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!!
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.
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.
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)
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
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.