Forums

include only on home page (4 posts)

  1. magicfun1
    Member
    Posted 2 years ago #

    How does one make an include, that only shows up on the home page?

  2. esmi
    Theme Diva & Forum Moderator
    Posted 2 years ago #

    Use the is_home() conditional.

    ttp://codex.wordpress.org/Conditional_Tags

  3. jceresini
    Member
    Posted 2 years ago #

    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
    }
  4. jceresini
    Member
    Posted 2 years ago #

    heh, wow...

    just goes to show there are many ways to do things in wp

Topic Closed

This topic has been closed to new replies.

About this Topic