How does one make an include, that only shows up on the home page?
How does one make an include, that only shows up on the home page?
Use the is_home() conditional.
ttp://codex.wordpress.org/Conditional_Tags
Are you referring to a php include? If so you can modify the theme so it checks the url of the page you're on to see if its the home page. That may be a bit complicated though. You can also add something like this to your theme:
$post = $wp_query->post;
if ($post->post_title == "Home"){
//any code you like
}heh, wow...
just goes to show there are many ways to do things in wp
This topic has been closed to new replies.