Home › Forums › Support › Add Page Headers to BBpress? › Reply To: Add Page Headers to BBpress?
April 25, 2016 at 11:02 pm
#189394
Lead Developer
Lead Developer
So using GP Hooks, you would add something like this to the “After Header” hook:
<?php if ( is_bbpress() ) : ?>
<div class="page-header-image grid-container grid-parent generate-page-header">
<img src="URL TO YOUR BBPRESS HEADER IMAGE" alt="" itemprop="image">
</div>
<?php endif; ?>
Then check the “Execute PHP” checkbox.