Here’s the PHP code which enables you to move your featured images from the default position to any genesis hook position.
This code displays your featured image after the excerpt on any blog listings page, including archive, author, blog, category, search, and tag pages.
Move Featured Image After Excerpt On All Archive Pages
remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
add_action( 'genesis_entry_footer', 'genesis_do_post_image', 1 );
Here’s an example of what your featured image will look like now on all archive pages.
You can change the genesis hook position and 3rd parameter for priority positioning to reposition your featured images to different positions on all archive pages.
You can also use conditional tags to control the position of your featured images on specific archive pages.