Skip to content

Instantly share code, notes, and snippets.

@InpsydeNiklas
Last active June 29, 2021 11:32
Show Gist options
  • Save InpsydeNiklas/fd007cdda4176d4bb2904a333e26d68e to your computer and use it in GitHub Desktop.
Save InpsydeNiklas/fd007cdda4176d4bb2904a333e26d68e to your computer and use it in GitHub Desktop.
this does something with MLP but I forgot
add_filter('multilingualpress.taxonomies_and_terms_of', function($taxonomies,$post){
foreach ($taxonomies as $key => $taxonomy) {
if ($taxonomy === 'product_cat') {
unset($taxonomies[$key]);
}
}
return $taxonomies;
},10,3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment