由于this stackexchange answer:
function wpse120418_unregister_categories() {
register_taxonomy( \'category\', array() );
}
add_action( \'init\', \'wpse120418_unregister_categories\' );
从技术上讲,这将使所有内容都保持原位(因此您可以随时将其带回,而不会丢失数据),但它通过从所有
$object_type
s
更新
要摆脱这个小部件,请将其添加到上面的函数中。
unregister_widget( \'WP_Widget_Categories\' );