摘要:wordpress文章页面的浏览量我们可以用纯代码或是插件来调用到,那对于一个分类栏目页面的浏览量呢,哪些栏目更受访客的…
wordpress文章页面的浏览量我们可以用纯代码或是插件来调用到,那对于一个分类栏目页面的浏览量呢,哪些栏目更受访客的喜爱,这个栏目内的文章浏览量很高,那该栏目的其它文章是不是也会受到福泽呢,需要我们通过wordpress分类栏目的浏览量来查找原因,所以今天大挖给大家推荐一个可以显示wordpress分类栏目浏览量的代码,如下。
将下面的代码加到当前主题的functions.php中
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function fa_get_tax_views( $term_id = null){
if ( !$term_id ) {
$term = get_queried_object();
$term_id = $term->term_id;
}
if ( !$term_id ) return;
$view = get_term_meta( $term_id , ‘_views’ , true ) ? get_term_meta( $term_id , ‘_views’ , true ) : 0;
return $view;
}
function fa_set_tax_views(){
if ( !is_category() && !is_tag() ) return;
$term = get_queried_object();
$term_id = $term->term_id;
$view = fa_get_tax_views($term_id);
update_term_meta( $term_id, ‘_views’ , $view + 1 );
}
add_action(‘get_header’, ‘fa_set_tax_views’);
|
调用非常简单,如果在分类或者标签页面,直接使用
1
|
<?php echo fa_get_tax_views();?>
|
来源:http://www.wazhuti.com/2830.html