• Does anyone know of a current plugin that works to allow for a different header image (various sizes) on each page?

    OR do you have an example of code I could put in to make this happen?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Do you know much about editing themes?

    If it’s 2014, I recommend creating a child theme.

    Find where the header image is currently being created (if that’s what you want to replace) and maybe use featured images?

    if(has_post_thumbnail()) { the_post_thumbnail(); } else { echo '<img src="default_image.jpg" />'; }

    Or do it as code

    if (is_page('01')) {}

    etc…

    I’m learning WordPress. I would like to use a different header image for each page on my site, that reflects the content of the page. I am using WordPress default 2014 theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twenty Fourteen Theme – Different header image on each page’ is closed to new replies.