Learn how to make the WordPress Featured Image only display on certain specific posts Some Genesis themes display the Featured Image on single posts by default, others do not. It’s a pretty easy snippet to throw into functions.php to display the image on all posts… <?php add_action( 'genesis_entry_header', 'featured_post_image', 8 ); /** * Conditionally add the […]