I have a test in my header.php to see if we have at home to show the hero or not.
<?php if ( is_home() && have_posts() ) : ?> <div id="hero" class="inner clearfix"> ... </div> <?php endif ?>
But when the user lands on index.php, the hero is not displayed. apparently there is no is_index () condition, does anyone know how I can check if it has its home or index?
source share