function hw_force_featured_image($content) { if ( is_single() && has_post_thumbnail() ) { $img = get_the_post_thumbnail(get_the_ID(), 'full'); return $img . $content; } return $content; } add_filter('the_content', 'hw_force_featured_image');
Scroll to Top