|
|
|
|
|
|
![]() |
#1 |
old enough to be Grandma Scrotum
|
Creating a post-specific sidebar
Thanks again to Walrus, I've discovered another way to tweak my blog so I thought I'd make a post about it for other lost souls such as myself.
You can code Wordpress so that the sidebar shows different things according to whether you're looking at a post or at the main page. The code is: Code:
<?php /* If this is the home page */ if (is_home()) { ?> <?php include (TEMPLATEPATH . '/nameofinclude1.php'); ?> <?php } ?> <?php /* If this is the post page */ if (is_single()) { ?> <?php include (TEMPLATEPATH . '/nameofinclude2.php'); ?> Say you want to link to a gallery pics in your sidebar but want one thing on the post page and something different on the main page. You'd create a separate php file with just the pic in it. You'd upload it into your theme directory and you'd change the name in the above code to whatever the include is called. I don't know if this post will help anybody but I was so proud of working it out I thought I'd share. I think I'm starting to get the hang of this ![]()
__________________
![]() |
![]() |
![]() |
![]() |
#2 |
Oh no, I'm sweating like Roger Ebert
|
I'm really glad to see that you've gotten into customization of your blog the way you have. It's good to know I'm not alone.
Once you start playing around with it you start to realize the power of WP. While I have no proof, I believe the key to the duplicate content issue isn't doing things to keep the bots out like noindex / nofollow but to work on making your pages as different as possible. |
![]() |
![]() |
![]() |
#3 |
Just because I don't care doesn't mean I don't understand!
|
The is_home function works very nicely in the sidebar. It used to work on pages themselves too and anyone looking around the codex is likely to find references to that functionality.
However, somewhere in the last couple of versions of WP, it stopped working except in the sidebar, so if anyone wants to do on a page, what you have done on your sidebar, the solution now is: Code:
<?php if ($_SERVER['QUERY_STRING'] == '') { ?> ...whatever you want to display <?php } ?> With that knowledge and a little native cunning, you can adapt this code to put content on other specific pages too... |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | Rate This Thread |
|
|