Archived topic
Show Page Header in Pages and Post
3 replies · Started by SII Concatel on February 24, 2017
Hi!
I need to put a page header with a full size image in the pages and posts but not in the initial screen that has a Blog Header. How can I do it without losing the format of the pages and the post?
Thanks!
Hi there,
Try using GP hooks:
https://docs.generatepress.com/article/hooks-overview/
http://demo.generatepress.com/hook-locations/
In after header hook, add something like this:
<?php if ( is_single() || is_page() ) : ?>
Insert image here
<?php endif; ?>
Make sure Execute PHP is checked.
Let me know if this works.
It works perfectly.
Thanks so much for the help.
You're very welcome :)