JobRoller Home Page Modification
I am trying to add a simple banner image just above the search bar and "submit a job" button (across the width of the site) ONLY on the Home Page of the JobRoller theme. Without an index.php in JobRoller this is proving difficult.
Normally in Wordpress you can use Conditional Tags in the php to call this function on the home page i.e. is_front_page or is_home
Conditional Tags mentioned here.
Neither "is_front_page" or "is_home works".
I am simply trying to add an image to show across the home page without having to go through creating a whole new static home page or custom post.
Example usage in header.php
PHP Code:
<?php if(is_home()): ?> IMAGE CODE HERE <?php endif; ?>
Help!