Add the following code to your WordPress theme’s function.php file, or a functionality plugin to display a featured image before the title on a single post.
//* Display featured image before single post title
add_action( 'genesis_before_entry', 'featured_post_image', 8 );
function featured_post_image() {
if ( ! is_singular( 'post' ) && in_category( '446' ) ) return;
the_post_thumbnail('post-image');
}
Share Your Two Cents