wordpress remove taxonomy from post

Solutions on MaxInterview for wordpress remove taxonomy from post by the best coders in the world

showing results for - "wordpress remove taxonomy from post"
Agustina
02 Sep 2020
1function remove_taxonomy(){
2    register_taxonomy('post_tag', array());
3}
4add_action('admin_init', 'remove_taxonomy');