View Single Post
Old 02-21-2009, 07:23 PM  
Doctor Feelgood
Confirmed User
 
Doctor Feelgood's Avatar
 
Industry Role:
Join Date: Nov 2005
Location: RI
Posts: 2,112
Quote:
Originally Posted by Angry Jew Cat View Post
Code:
<?php if (is_home('')) : ?>
include this shit only on index page
<?php endif; ?>

<?php if (is_category('category-one') ) : ?>
include this shit only on category with category slug "/category-one/"
<?php endif; ?>
conditional includes are much more flexible than just these examples and you can lookup more info on codex.wordpress.org
but then it still shows up on page 1,2,3 etc
then i tried this and almost had it, but nothing shows

Code:
<?php if (is_home ('') and is_page ('')) : ?>
include this shit only on index page
<?php endif; ?>
Doctor Feelgood is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote