Skip to content

Snippet: Display Blog Post Featured Image Full-Width For All Posts

add_filter( 'wpex_blog_single_media_position', function() {
    return 'above';
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top