Display HTML in the WPBakery Page Builder Toggle Title
// Allow HTML in Visual Composer Toggle heading.
add_filter( 'wpb_toggle_heading', function( $heading, $atts ) {
return html_entity_decode( $heading );
}, 10, 2 );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)