wordpress后台文章列表如何显示文章点赞数

2024年10月14日 建站教程

利用wordpress插件建站中,如何在后台文章列表中显示文章点赞数,下面web建站小编给大家简单介绍一下具体解决方法!

打开主题下functions.php文件,新增以下代码:

//~ 数字 格式化
function num2tring($num) {
  if ($num >= 10000) {
    $num = round($num / 10000 * 100) / 100 .' w'; // 以万为单位
  } elseif($num >= 1000) {
    $num = round($num / 1000 * 100) / 100 . ' k'; // 以千为单位
  } else {
    $num = $num;
  }
  return $num;
}
 
//~ 在后台文章列表增加2列数据,展示浏览量和点赞数
add_filter( 'manage_posts_columns', 'hbao_customer_posts_columns' );
function hbao_customer_posts_columns( $columns ) {
  $columns['views'] = '浏览量';
  $columns['likes'] = '点赞数';
  return $columns;
}
 
//~ 输出浏览量和点赞数
add_action('manage_posts_custom_column', 'hbao_customer_columns_value', 10, 2);
function hbao_customer_columns_value($column, $post_id){
  if($column=='views'){
    $count = num2tring(get_post_meta($post_id,'post_views_count',true)); // 注意 post_views_count是字段名,根据你自己的来
    if(!$count){
      $count = 0;
    }
    echo $count;
  }
  if($column=='likes'){
    $likes_count = get_post_meta($post_id,'bigfa_ding',true); // 注意 bigfa_ding是字段名,根据你自己的来
    if(!$likes_count) {
      $likes_count = 0;
    }
    echo $likes_count;
  }
  return;
}

本文链接:http://so.lmcjl.com/news/15368/

展开阅读全文
相关内容