Home Forums Support headers Reply To: headers

#212429
Tom
Lead Developer
Lead Developer

You would want to use GP Hooks for something like this.

For example, in the “Before Header Content” hook:

<?php if ( is_front_page() ) : ?>
    <img src="URL TO YOUR IMAGE" alt="" />
<?php else : ?>
    <p class="main-title" itemprop="headline">YOUR SITE TITLE</p>
<?php endif; ?>