Skip to content

Instantly share code, notes, and snippets.

@psaikali
Created September 20, 2017 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psaikali/ef73cc975eaff42e2276a4531a1beaf2 to your computer and use it in GitHub Desktop.
Save psaikali/ef73cc975eaff42e2276a4531a1beaf2 to your computer and use it in GitHub Desktop.
Supprimer les "Etiquettes produits" (tags) de WooCommerce
<?php
/**
* Faire disparaitre les étiquettes produits (tags) des produits WooCommerce
* Exemple : http://media.mosaika.fr/mcuZ
*/
function msk_unregister_post_tag() {
register_taxonomy('product_tag', array());
}
add_action('init', 'msk_unregister_post_tag');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment