如何更改分类页面的URL?

时间:2018-12-13 作者:Krishna thakor

我的Wordpress默认类别有“新闻”类别术语。我创建了名为“艺术家”的自定义帖子类型和名为“流派”的自定义分类法。下面是我在permalink部分设置的内容

custom structure - /news/%category%/%postname%/
因为我想用“news”slug打开所有默认的帖子。我创建页面分类流派。php,这导致了所有体裁分类的帖子。比如说体裁分类法中有“非洲流行音乐”一词。现在当我查看页面时,它会显示所有“afro pop”的帖子,但问题是它有url

http://localhost/mn2s-new/news/genre/afro-pop/
我想要的是

http://localhost/mn2s-new/genre/afro-pop/
我想删除分类流派的新闻片段。php页面。请帮助我,我尝试了2天,但没有找到任何解决方案。

1 个回复
SO网友:Milo

这由with_front 分类法注册代码中的参数:

register_taxonomy(
    \'genre\',
    \'artist\',
    array(
        \'rewrite\' => array(
            \'slug\' => \'genre\',
            \'with_front\' => false, // don\'t prepend static prefix from post permalink
        ),
        // your other args...
    )
);

相关推荐

Permalinks - Archives

WordPress文档说:WordPress offers you the ability to create a custom URL structure for your permalinks and archives. https://codex.wordpress.org/Settings_Permalinks_Screen 我看到此屏幕将如何为特定帖子/页面创建永久链接,但我没有看到此设置屏幕上关于如何为存档帖子/页面创建链接的任何其他详细信息。有人能澄清一下吗?