Home › Forums › Support › Blog page header in "single post view" › Reply To: Blog page header in "single post view"
March 26, 2016 at 4:13 pm
#181942
Lead Developer
Lead Developer
Hmm, unfortunately I don’t think this is possible as all of the CSS the page header generates for the blog is told to only work on the main blog page.
You could however use GP Hooks to do it, you just don’t get any of the fancy controls.
For example, in the “After Header” hook:
<?php if ( is_single() ) : ?>
<div class="page-header-content generate-page-header generate-content-header">
<div class="grid-container">
Your content goes in here
</div>
</div>
<?php endif; ?>