Skip to content

Snippet: 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 (100% Free) or WPCode (sponsored)
Back To Top