有一个名为“public”的参数,您可以在其中设置自定义帖子类型是私有的还是公共的
add_action( \'init\', \'create_post_type\' );
function create_post_type() {
register_post_type( \'acme_product\',
array(
\'labels\' => array(
\'name\' => __( \'Products\' ),
\'singular_name\' => __( \'Product\' )
),
\'public\' => false,
\'has_archive\' => true,
)
);
}