在Woothemes的主题列表中,孩子是Bookclub。
当我添加一本书(作为自定义帖子类型)时,网址如下:
mysite/book/post-name
我试图删除the“书”,但我失败了
我希望成为
mysite/post-name
最佳答案
然后为此安装一个完整的插件要好得多。
经过4.3测试:
register_post_type( 'dummy', array(
//other custom posttype definitions
'rewrite' => array('slug' => '/')
) );
在此之后,保存您的重写规则以使其起作用。
关于wordpress - 如何删除自定义帖子类型网址中的子弹?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12232715/