skip to Main 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 WPCode)
Back To Top