博客帖子和页面的永久链接结构由Wordpress管理Settings -> Permalinks
页面,以便使博客帖子具有永久链接blog/%postname%/
你做得对。
棘手的部分是关于自定义Post类型permalinks声明:
在CPT arguments声明中rewrite
规则参数with_front
- 如果此参数为false
您将拥有无前缀的permalink结构,用于博客帖子true
你将拥有你所经历的一切。默认设置为true
.
所以重写参数的固定部分看起来像。
\'rewrite\' => array(
\'slug\' => \'casestudies\', // your case studies permalink base.
\'with_front\' => false, // important to make your links without base of blog posts.
\'pages\' => true, // set true if you need pagination for your cpt listing.
),