- This topic has 1 reply, 2 voices, and was last updated 5 years, 6 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Moving Featured Image Under Post Ttitle
Hi, Wes.
I’m using the Epik Theme, which is awesome, and I wanted to know how to move the featured image under the post and page title.
I know it would be a change in the PHP for the functions.php file, but I’m just not sure what to change.
Thanks in advance for your help.
Glenn
To move the Featured Image under the Page Title, add this to your functions file –
remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
add_action( 'genesis_before_entry_content', 'genesis_do_post_image', 1 );
If you want to move it to a different location, take a look here at the Hook list – https://my.studiopress.com/documentation/hooks/hooks/hook-reference/
Let me know if that helps