Como não existe um método direto para remover taxonomias, eu uso essa função simples para remove-las.

add_action( 'init', 'unregister_taxonomy'); function unregister_taxonomy(){ global $wp_taxonomies; $taxonomy = 'taxonomy_to_remove'; if ( taxonomy_exists( $taxonomy)) unset( $wp_taxonomies[$taxonomy]); }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.