Forums
(@herringson)
7 years, 2 months ago
Marco77 was on to the right idea.
header.php (i.e. wp-content/themes/twenty-sixteen/header.php) line 78:
<?php if ( get_header_image() ) : ?>
add && is_front_page()
&& is_front_page()
so,
<?php if ( get_header_image() && is_front_page() ) : ?>
should do the trick