Skip to content

Snippet: Remove Recommended Plugins

This snippet can be used to remove the recommended plugins function from the theme. Note: In the latest versions of the theme you can disable this right via the main Theme Panel.

// Remove recommended plugins
add_filter( 'wpex_recommended_plugins', '__return_empty_array' );
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