Site logo

Archived topic

Return the header of my post

17 replies · Started by Simone on November 1, 2020

Viewing posts 16–18 of 18

If you put the Header element back in for your posts.
Then add this PHP Snippet to your site, it will move the header element to where the featured image is normally displayed:

add_filter( 'generate_page_hero_location', function( $location ) {
    if ( is_single() ) {
        $location = 'generate_before_content';
    }

    return $location;
} );

How to add PHP:
https://docs.generatepress.com/article/adding-php/

Thank you, David. Where on my website can I put this code? In an HTML widget?

This archived topic is closed to new replies.