你看过抄本了吗?您正在搜索的选项是\'public
\'
只需将其作为参数添加到调用中即可register_taxonomy()
像这样:
$args = array(
\'public\' => false,
... [your-other-arguments] ...
);
register_taxonomy( \'genre\', array( \'book\' ), $args );
文档转到此处:
public
(布尔值)(可选)如果此分类法在管理UI中公开。
默认值:true
http://codex.wordpress.org/Function_Reference/register_taxonomy