Recently, one site we were working on needed a sidebar that would show the 4 most recent posts on the…
Tag Archive sidebar
You can manage multiple sidebar widgets in WordPress. To do so, you go to the Widgets page in the Admin,…
One of the reasons I hesitated to use widgets is because there are many useful plugins that aren’t widgets and…
Headsetoptions has a great review of the types of tabbed interfaces available, and a tutorial on how to add one…
Here’s a bit of code to put in your sidebar to display the most recent posts on your blog: <?php…
<?php$postlist = get_posts(‘category=6&numberposts=5’); foreach ($postlist as $post) :?><li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li><?php endforeach; ?> Use this in the sidebar…
Some of you may have noticed that I added a Finetune player in the right-most sidebar. Why? Only because I…
In an earlier post, I wrote about my quest to find a way to easily allow users to modify text…
Update: since I wrote this post, I discovered some problems with this solution. I ended up using a different solution,…
To show a different sidebar on different pages, replace the standard call for the sidebar: <?php get_sidebar(); ?> with the…