Skip to content

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

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

An den Anfang scrollen