自定义发布类型URL重写 时间:2015-02-25 作者:Fati Cesko 我想为自定义帖子类型帖子添加参数所以我需要这样做我的url。http://www.mywebsite.com/mycpt-slug/post-slug/myparameter我找到了这个解决方案,但在这里它是使用post-ID的,我如何才能使用post-ID进行工作?Why does rewrite rule work for page not for custom post type post? 1 个回复 SO网友:Fati Cesko 我找到了解决办法。function add_rewrite_rules($rules) { $newrules = array(\'cpt-slug/([^/]+)/([^/]+)/?$\' => \'index.php?name=$matches[1]&post_type=cpt_name&member_view=$matches[2]\'); $rules = $newrules + $rules; return $rules; }您只需将“p”更改为“name” 结束 文章导航