更改标签永久链接结构

Change Tag Permalink Structure

在标签页中,我希望点击标签时的默认永久链接是 /tag/key-word

我想要零钱

https://example.com/tag/key-word

https://example.com/?s=key+word

您可以在函数中为 term_link 操作和格式 url 添加过滤器。 (我假设您想要搜索 url 标签标题。)

add_filter('term_link', 'term_link_filter', 10, 3);
function term_link_filter( $url, $term, $taxonomy ) {
    if ($taxonomy == 'post_tag') {
        return get_search_link( $term->name ) ;
    }
    return $url;
}

希望对您有所帮助。