MainWP is my tool of choice when it comes to managing a network of wordpress…
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')); }
Dieser Beitrag hat 0 Kommentare