从归档永久链接中删除自定义分类标准块

时间:2017-01-24 17:17:40

标签: wordpress permalinks taxonomy custom-taxonomy

我正在寻找重写规则来从WordPress分类法归档永久链接中删除基本分类标题(主题)。

我正在寻找的功能示例如下:

http://website.com/topic/health将移除/topic基础slu并成为 http://website.com/health/

我确信这可以通过rewrite rules实现,但重写会是什么样的?

1 个答案:

答案 0 :(得分:0)

希望以下代码可以帮助您:

function custom_topic_link( $link, $term, $taxonomy )
{
    if ( $taxonomy !== 'topic' )
        return $link;

    return str_replace( 'topic/', '', $link );
 }
add_filter( 'term_link', 'custom_topic_link', 10, 3 );
相关问题