我正在开发一个网站,我为它注册了一个名为Book and taxonomy Genre的自定义帖子类型。我想要一个永久链接 www.mysite.com/genre_name/post_name
代码:
register_post_type( 'reviews', array(
'label' => 'Books',
'description' => '',
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'capability_type' => 'page',
'hierarchical' => true,
'rewrite' => array('slug' => 'book'),
'query_var' => true,
'exclude_from_search' => false,
'supports' => array( 'title','editor','page-attributes', 'comments', 'author', 'revisions' )
)
);
我该怎么办?任何帮助将不胜感激。
答案 0 :(得分:1)
在注册自定义帖子类型时,传递给定的参数
'rewrite' => array( 'slug' => 'genre_name' ),
然后更新永久链接。这将重写slug名称而不是自定义帖子类型名称
答案 1 :(得分:0)
我通过为post_type_link和pre_get_posts创建自定义处理程序找到了一种方法。
我准备了url,因为我的客户希望使用post_type_link。
我为我想要的每个分类术语添加了重写规则。并冲洗规则。
这种方式有效。