【发布时间】:2013-04-10 10:05:48
【问题描述】:
我已经开始维护一个网站,它是由另一个人构建的,我喜欢修改适用于自定义帖子类型的重写规则。
更具体地说,自定义帖子类型是使用以下设置构建的:
$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/
有什么想法吗?
【问题讨论】: