//custom function function create_shortcode_test() { echo the_excerpt(); } add_shortcode ( 'show_excerpt' , 'create_shortcode_test' ); Or…
Remove Visual Composer Metadata from Sourcecode
xiangying_xu / Pixabay
Visual Composer is a useful plugin but as many others it leaves it’s traces in the sourcecode of you website. Simply add this snippet to your functions.php to prevent this bevaior.
add_action('init', 'myoverride', 100);
function myoverride() {
remove_action('wp_head', array(visual_composer(), 'addMetaData'));
}
