• I’ve installed this plugin onto my wordpress site. I created a (somewhat static) homepage template, and it sits at the top of that, which is perfect. However, it also shows up on my posts page, and I can’t seem to figure out why. Anyone know how to just make this show up on my home page template, as I only need it once on the site?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Shaun Kerr

    (@shaun-kerr)

    Hmmm, not sure if I follow. I already placed the <?php /*Template Name: Home*/?> tag at the top of my “static” page, and named it home.php, AND set the reading to have it show up as my frontpage.

    I just don’t want the slider to show up anywhere except for my frontpage. But it’s showing up on my frontpage, and my posts page. I want to get it off of my posts page…

    So what is_home does is check to see if the current page is your homepage.

    The code you need is…

    <?php if(is_home())
    	{do this if it's front page}
    	else
    	{do that if it's any other page}
    
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Question about Easing Slider plugin’ is closed to new replies.