solostream

Tag: "template tags"

Handy WordPress cheat sheet

| November 6, 2007 | 2 Comments
WPCandy has published a very handy WordPress cheat sheet in conjunction with Liquidcity. It has template tags and other code snippets that WordPress practitioners use frequently. And it's pretty. Check it out. View Post

Aizatto’s Related Posts Plugin

| April 22, 2007 | 2 Comments
Most WordPress users are familiar with the WASABI Related Entries plugin. I've never used it because it involves messing around with the database tables. Instead, I have been using the Simple Tagging feature of displaying related posts based on tags used in ... View Post

Showing different sidebar on different pages

| February 21, 2007 | 8 Comments
To show a different sidebar on different pages, replace the standard call for the sidebar: <?php get_sidebar(); ?> with the following code: <?php include ('sidebar2.php'); ?> The same can be done to call different headers, i.e. instead of <?php get_header(); ?> use <?php include ('header2.php'); ?>For more information, see Different Sidebars Anyone? on the ... View Post