wordpress tags标签改造id显示加后缀html显示

wordpress tags标签改造id显示加后缀html显示


/* 标签以id+html方式展示*/
add_action('generate_rewrite_rules','tag_rewrite_rules');
add_filter('term_link','tag_term_link',10,3);
add_action('query_vars', 'tag_query_vars');
function tag_rewrite_rules($wp_rewrite){
    $new_rules = array(
        'tag/(\d+)/feed/(feed|rdf|rss|rss2|atom).html' => 'index.php?tag_id=$matches[1]&feed=$matches[2]',
        'tag/(\d+)/(feed|rdf|rss|rss2|atom).html' => 'index.php?tag_id=$matches[1]&feed=$matches[2]',
        'tag/(\d+)/embed.html' => 'index.php?tag_id=$matches[1]&embed=true',
        'tag/(\d+)/page/(\d+).html' => 'index.php?tag_id=$matches[1]&paged=$matches[2]',
        'tag/(\d+).html' => 'index.php?tag_id=$matches[1]',
    );
    $wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
}
function tag_term_link($link,$term,$taxonomy){
    if($taxonomy=='post_tag'){
        return home_url('/tag/'.$term->term_id.'.html');
    }
    return $link;
}
function tag_query_vars($public_query_vars){
    $public_query_vars[] = 'tag_id';
    return $public_query_vars;
}

效果:

wordpress tags标签改造id显示加后缀html显示

声明:本站部分文章来源于网络,如有危害到您的合法权益请联系客服

给TA打赏
共{{data.count}}人
人已打赏
技术教程

基于Windows Server 2012 R2的DNS服务器搭建详解

2022-1-14 3:18:09

Windows技术教程

win10开启网络发现不生效怎么办

2022-1-16 9:08:54

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索