在“标记”页面中,我希望默认的永久链接是单击标记时的/tag/key-word
。
我要改变
https://example.com/tag/key-word
到
https://example.com/?s=key+word
答案 0 :(得分:0)
您可以为term_link操作添加过滤器,并在函数中设置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;
}
希望这会有所帮助。