I have a test in my header.php to see whether we are at home to display a hero or not.
Try out is_front_page()
from the Wordpress conditional tags list.
It is true when you are on the "Front Page" of your wordpress installation, which is:
Try:
<?php if ( ( is_home() || is_front_page() ) && have_posts() ) : ?>
<div id="hero" class="inner clearfix">
...
</div>
<?php endif ?>
If it still doesn't work, try adding the following just before the if
statement:
<?php wp_reset_query(); ?>
Try is_front_page()
<?php if ( is_home() || is_front_page() ) : ?>
<div id="hero" class="inner clearfix">
...
</div>
<?php endif ?>
That should return true if you are on the absolute root of site.