Archived topic
Awesome “full width” photo header
1 reply · Started by Michaelrobbert on August 31, 2016
Viewing posts 1–2 of 2
I have a question about an plugin. Does someone knows a free awesome “full width” photo header that I can place ABOVE the menu on my site. Let me know. See my GP website and let me know what you think. Michaelrobbert
Hi there,
You should be able to use the Page Header add-on, and then just move it above the menu:
add_action( 'after_setup_theme','generate_move_page_header' );
function generate_move_page_header()
{
remove_action('generate_after_header','generate_page_header', 10);
add_action('generate_after_header','generate_page_header', 4);
}
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
Hope this helps :)
This archived topic is closed to new replies.