How do I remove a taxonomy from Wordpress?

前端 未结 7 765
一个人的身影
一个人的身影 2021-02-01 17:10

I\'m creating different custom post types and taxonomies and I want to remove the \'Post Tags\' taxonomy from the default \'Posts\' post type. How do I go about doing this?

7条回答
  •  轮回少年
    2021-02-01 17:46

    add_action('admin_menu', 'remove_menu_items'); function remove_menu_items() { remove_submenu_page('edit.php','edit-tags.php?taxonomy=post_tag'); }

提交回复
热议问题