使用定义自定义帖子类型时register_post_type()
传递了一个参数数组。设置public
参数设置为“false”,以防止永久链接的生成,以及其他相关操作(搜索、导航等)。
使用WP Codex中的示例:
function codex_custom_init() {
$args = array(
\'public\' => false,
\'label\' => \'Books\'
);
register_post_type( \'book\', $args );
}
add_action( \'init\', \'codex_custom_init\' );
https://codex.wordpress.org/Function_Reference/register_post_type