Remove WooCommerce Generator Tag

If you would like to remove the Remove WooCommerce Generator Tag from the `` section of your WordPress installation, you can add the following line somewhere, perhaps in your wordpress `functions.php` file:

`remove_action(‘wp_head’, array($GLOBALS[‘woocommerce’],’generator’));`

I’ve updated the code to work with the most recent version of Woo Commerce, try adding this to the `functions.php` file of your WordPress theme:

function remove_woo_commerce_generator_tag()
{
remove_action(‘wp_head’,array($GLOBALS[‘woocommerce’], ‘generator’));
}
add_action(‘get_header’,’remove_woo_commerce_generator_tag’);

That will prevent the following line from being shown in your HTML code:


Remove WooCommerce Generator Tag

Related Posts:

  • No Related Posts
This entry was posted in Security, Tech Tips, Web Development and tagged , , , , . Bookmark the permalink.

8 Responses to Remove WooCommerce Generator Tag

Leave a Reply

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