This allows to change filename, layout, pagination and other stuff for the DKPF plugin. //PDF…
Remove Visual Composer Metadata from Sourcecode
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