If you somehow came across a situation where you wanted to make featured image appear before title on blog page in the Genesis framework WordPress then the following code is gonna help you do that. Just add the following code to your functions.php file in child theme and you are done.
Add this to your functions.php
function display_image_before_title() { if ( is_archive() || is_home() ) { remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); add_action( 'genesis_entry_header', 'genesis_do_post_image', 8 ); } } add_action( 'genesis_before_content', 'display_image_before_title' );
Leave a Reply