资源描述
Wordpress tags标签改造id显示加后缀html显示
wordpress tags标签改造id显示加后缀html显示,对seo来说是特别友好的。
使用文本编辑器打开当前主题目录下的 functions.php,添加以下 php 代码:
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;
}
转载请注明来源地址:小川编程 » https://www.youhutong.com/index.php/article/index/2112.html
1、本站发布的内容仅限用于学习和研究目的.请勿用于商业或非法用途,下载后请24小时内删除。
2、本站所有内容均不能保证其完整性,不能接受请勿购买或下载,如需完整程序,请去其官方购买正版使用
3、本站联系方式Email:admin@youhutong.com ,收到邮件会第一时间处理。
4、如侵犯到任何版权问题,请立即告知本站(立即在线告知),本站将及时删除并致以最深的歉意