如何隐藏自定义帖子类型

时间:2012-08-23 作者:Tyler Durden

我有一个wordpress网站,我需要暂时隐藏一些自定义的帖子类型。

我想把它藏起来,因为我们以后会需要它的。

我该怎么做?

1 个回复
最合适的回答,由SO网友:hacksy 整理而成

有一个名为“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,
        )
    );
}

结束

相关推荐