有没有办法删除" 项目"来自下面的永久链接/网址? www.fourmanteam.com/project/camping
我想按以下顺序排列网址。 www.fourmanteam.com/camping
我尝试了自定义结构。但是,没有帮助。
感谢。
答案 0 :(得分:1)
我认为,“项目”是您的自定义分类。
因此,在注册您的分类法时,您需要通过以下重写规则:
$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => '/' ),
);
register_taxonomy( 'Project', array( [custom_post_type_slug] ), $args, array( 'rewrite' => array ('slug'=>'/')));
应用此代码后,您需要刷新重写规则。为此,您只需要再次保存永久链接设置。
答案 1 :(得分:0)
您可能需要考虑使用Redirection插件(或其他类似插件)。它不会改变固定链接本身,但至少它可以让你有一个更短的链接到类别页面。