我已经开始维护一个网站,它是由另一个人构建的,我喜欢修改应用于自定义帖子类型的重写规则。
更具体地说,自定义帖子类型使用以下设置构建:
$args = array(
...
'rewrite' => array(
'slug' => 'myposttype',
'with_front' => false
),
....
)
register_post_type('myposttype', $args);
永久链接结构如下:
Post name http://www.mysite.gr/sample-post/
但url结构如下:
http://www.mysite.gr/myposttype/my_post_slug/
我怎么能把它改成
http://www.mysite.gr/my_post_slug/
请问有什么想法吗?