7折
减价出售
¥799
wordpress主题默认的是没有wordpress文章阅读数这个字段的,但是为了网站的体验度更好,所以要想在前端文章页面调用阅读量。打算使用代码来实现统计功能,就需要我们修改functions.php这个文件,接下来分享一下我整理的wp添加阅读量的代码。
操作很简单,将下面的文章点击量统计代码添加到你主题的functions.php的最后
function record_visitors(){
if (is_singular()){
global $post;
$post_ID = $post->ID;
if($post_ID){
$post_views = (int)get_post_meta($post_ID, 'views', true);
if(!update_post_meta($post_ID, 'views', ($post_views+1))){
add_post_meta($post_ID, 'views', 1, true);
}
}
}
}
add_action('wp_head', 'record_visitors');
function post_views($before = '(点击 ', $after = ' 次)', $echo = 1){
global $post;
$post_ID = $post->ID;
$views = (int)get_post_meta($post_ID, 'views', true);
if ($echo) echo $before, number_format($views), $after;
else return $views;
}
在需要的地方,加入:
<?php post_views(' ', ' 次'); ?>
在functons.php添加:
//在后台文章列表增加一列数据
add_filter( 'manage_posts_columns', 'customer_posts_columns' );
function customer_posts_columns( $columns ) {
$columns['views'] = '浏览次数';
return $columns;
}
//输出浏览次数
add_action('manage_posts_custom_column', 'customer_columns_value', 10, 2);
function customer_columns_value($column, $post_id){
if($column=='views'){
$count = get_post_meta($post_id, 'views', true);
if(!$count){
$count = 0;
}
echo $count;
}
return;
}
效果如下:
到此就介绍了wordpress的前台和后台显示wordpress文章阅读数的方法,很实用,有些简单的功能并不需要来用插件实现,几行代码能搞定的事情,就没必要使用wordpress插件来解决。
减价出售
减价出售
减价出售
减价出售
电话咨询
133-7205-6573
微信咨询