如何在特定的帖子类型中添加基本/正面slug/url? 时间:2017-03-10 作者:James Maiden 我目前拥有:我的网站。com/custom-post-type-1/postname我的网站。com/custom-post-type-2/postname我想实现:我的网站。com/my base slug/custom-post-type-1/postname我的网站。com/my base slug/custom-post-type-2/postname我不想"my-base-slug" 显示除指定的帖子类型以外的任何内容。这有可能吗?怎么可能? 2 个回复 SO网友:Milo 您可以通过slug 当您register your post type.$args = array( \'rewrite\' => array( \'slug\' => \'my-base-slug/custom-post-type-1\' ), // your other args... ); register_post_type( \'mycpt\', $args ); SO网友:geraldo 如果您对使用插件很满意,只需看看Custom Post Type Permalinks 或Permalinks Customizer. 文章导航