FAQKnowledgebaseWeb Development

How To Remove WordPress Generator Meta Tags?

Add the following code to the functions.php file in your child theme’s directory.

Remove WordPress ‘Generator’ Tag

remove_action(‘wp_head’, ‘wc_generator’);

Remove WooCommerce ‘Generator’ Tag

remove_action(‘wp_head’, ‘wp_generator’);

Remove Performance Labs ‘Generator’ Tag

remove_action(‘wp_head’, ‘perflab_render_generator’);

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *


Back to top button