如何在自定义帖子类型网址中删除slug?

时间:2012-09-02 01:17:51

标签: wordpress url wordpress-theming slug permalinks

在Woothemes的房源主题中,孩子们就是Bookclub。 当我添加一本书 - 作为自定义帖子类型 - 网址变为如下:

mysite/book/post-name

我试图删除slu“”书,但我失败了 我希望它是

mysite/post-name

3 个答案:

答案 0 :(得分:4)

为此安装整个插件要好得多。
测试4.3:

register_post_type( 'dummy', array(
    //other custom posttype definitions 
    'rewrite' => array('slug' => '/')
) );

在此保存您的重写规则后,使其正常运行。

答案 1 :(得分:2)

实际上它非常简单,安装插件“从自定义帖子类型删除slug”来删除'/ product /'slug,不需要任何设置。安装插件“SEO Ultimate”删除'产品类别'slug,在'Permalink Tweaker'下的SEO Ultimate设置中选中'Product Categories'并保存。我们将其用于附属公司,因此无法评论其他区域,例如购物车。

答案 2 :(得分:1)

我不知道这个插件有多好用,但是你走了。

http://wordpress.org/extend/plugins/remove-slug-from-custom-post-type/