Skip to content

Snippet: Remove the WPBakery noscript header tag

add_action( 'vc_after_init', function() {
    remove_action( 'wp_head', [ wpbakery(), 'addNoScript' ], 1000 );
} );
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