Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Forked from mikejolley/gist:3709371
Last active January 3, 2016 22:19
Show Gist options
  • Save fdaciuk/8527342 to your computer and use it in GitHub Desktop.
Save fdaciuk/8527342 to your computer and use it in GitHub Desktop.
<?php
// called only after woocommerce has finished loading
add_action( 'woocommerce_init', 'my_woocommerce_loaded_function' );
function my_woocommerce_loaded_function() {
global $woocommerce;
// remove WC generator tag from <head>
remove_action( 'wp_head', array( $woocommerce, 'generator' ) );
}

Remover meta tag generator do WooCommerce

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment