Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道如何在帖子类型下隐藏自定义分类法吗?我尝试了以下方法。 'public' => false 'show_ui' => false
'public' => false 'show_ui' => false
虽然我可以用上面的方法删除两者,但我不能只删除侧边栏分类法。我希望在添加刚刚从侧边栏中删除的新帖子时可以使用分类法。任何帮助,将不胜感激。
尝试这个..
register_taxonomy("your-taxonomy", array("your-post-type"), array( "hierarchical" => true, "label" => "Taxonomy Title", "singular_label" => "Taxonomy", 'show_ui' => false, 'query_var' => true, "rewrite" => array('slug' => 'your-taxonomy') ));