wordpress后台增加浏览量,点赞数和缩略图

  • 2019-03-16 18:08:17
  • 2,902 次阅读
  • 稿源:天马行空

wordpress默认的后台功能比较弱,有很多地方需要我们自己增加新的功能,比如在用户管理后台文章列表位置之后要显示文章的浏览量及点赞数或者缩略图等,以达到可视化,方便用户观察,或者说哪些文章比较受欢迎,我们好心里有个底。这时,我们可以在functions文件里加入一些代码,以达到我们的需求,具体过程如下。

(1)对数字格式化

  1. function num2tring($num) {
  2. if ($num >= 10000) {
  3. $num = round($num / 10000 * 100) / 100 .' w'; // 以万为单位
  4. } elseif($num >= 1000) {
  5. $num = round($num / 1000 * 100) / 100 . ' k'; // 以千为单位
  6. } else {
  7. $num = $num;
  8. }
  9. return $num;
  10. }

(2)在后台文章列表增加2列数据,以展示浏览量和点赞数

  1. add_filter( 'manage_posts_columns', 'star_customer_posts_columns' );
  2. function star_customer_posts_columns( $columns ) {
  3. $columns['views'] = '浏览量';
  4. $columns['likes'] = '点赞数';
  5. return $columns;
  6. }

(3)输出浏览量和点赞数

  1. add_action('manage_posts_custom_column', 'star_customer_columns_value', 10, 2);
  2. function star_customer_columns_value($column, $post_id){
  3. if($column=='views'){
  4. $count = num2tring(get_post_meta($post_id,'views',true)); // 注意views是字段名,根据你自己的来
  5. if(!$count){
  6. $count = 0;
  7. }
  8. echo $count;
  9. }
  10. if($column=='likes'){
  11. $likes_count = get_post_meta($post_id,'favorite_praise',true); // 注意favorite_praise是字段名,根据你自己的来
  12. if(!$likes_count) {
  13. $likes_count = 0;
  14. }
  15. echo $likes_count;
  16. }
  17. return;
  18. }

(4)后台文章添加缩略图

  1. if ( !function_exists('star_AddThumbColumn') && function_exists('add_theme_support') ) {
  2. // for post and page
  3. add_theme_support('post-thumbnails', array( 'post', 'page' ) );
  4. function star_AddThumbColumn($cols) {
  5. $cols['thumbnail'] = __('Thumbnail');
  6. return $cols;
  7. }
  8. function star_AddThumbValue($column_name, $post_id) {
  9. $width = (int) 40;
  10. $height = (int) 40;
  11. if ( 'thumbnail' == $column_name ) {
  12. // thumbnail of WP 2.9
  13. $thumbnail_id = get_post_meta( $post_id, '_thumbnail_id', true );
  14. // image from gallery
  15. $attachments = get_children( array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image') );
  16. if ($thumbnail_id)
  17. $thumb = wp_get_attachment_image( $thumbnail_id, array($width, $height), true );
  18. elseif ($attachments) {
  19. foreach ( $attachments as $attachment_id => $attachment ) {
  20. $thumb = wp_get_attachment_image( $attachment_id, array($width, $height), true );
  21. }
  22. }
  23. if ( isset($thumb) && $thumb ) {
  24. echo $thumb;
  25. } else {
  26. echo __('None');
  27. }
  28. }
  29. }
  30. // for posts
  31. add_filter( 'manage_posts_columns', 'star_AddThumbColumn' );
  32. add_action( 'manage_posts_custom_column', 'star_AddThumbValue', 10, 2 );
  33. // for pages
  34. add_filter( 'manage_pages_columns', 'star_AddThumbColumn' );
  35. add_action( 'manage_pages_custom_column', 'star_AddThumbValue', 10, 2 );
  36. }

(5)最终效果图

Administrator_show

喜欢 13

文章评论 (0)

表情

大眼 可爱 大笑 坏笑 害羞 发怒 折磨 快哭了 大哭 白眼 晕 流汗 困 腼腆 惊讶 憨笑 色 得意 骷髅 囧 睡觉 眨眼 亲亲 疑问 闭嘴 难过 淡定 抗议 鄙视 猪头