generate_page_hero_location

The generate_page_hero_location allows you to move a page hero to other available hooks.

For example, the following PHP snippet would move it to the generate_before_content hook:

add_filter( 'generate_page_hero_location', function() {
	return 'generate_before_content';
} );