分享你我的心得.
共乘一片美好网络.

WordPress无插件调用浏览次数最多的文章列表

方法/步骤

  1. 首先要使用纯代码统计文章浏览次数。
  2. 将以下模板函数放到自己网站模板的模板函数functions.php里;//获取阅读最多的文章  
    //代码来源:学做网站论坛https://www.xuewangzhan.net/ 
    function get_most_viewed_format($mode = ”, $limit = 10, $show_date = 0, $term_id = 0,$beforedate= ‘(‘, $afterdate = ‘)’, $beforecount= ‘(‘, $aftercount = ‘)’) {   
      global $wpdb, $post;   
      $output = ”;   
      $mode = ($mode == ”) ? ‘post’ : $mode;   
      $type_sql = ($mode != ‘both’) ? “AND post_type=’$mode‘” : ”;   
      $term_sql = (is_array($term_id)) ? “AND $wpdb->term_taxonomy.term_id IN (” . join(‘,’,$term_id) . ‘)’ : ($term_id != 0 ? “AND $wpdb->term_taxonomy.term_id = $term_id” : ”);   
      $term_sql.= $term_id ? ” AND $wpdb->term_taxonomy.taxonomy != ‘link_category'” : ”;   
      $inr_join = $term_id ? “INNER JOIN $wpdb->term_relationships ON ($wpdb->posts.ID = $wpdb->term_relationships.object_id) INNER JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)” : ”;   
      // database query   
      $most_viewed = $wpdb->get_results(“SELECT ID, post_date, post_title, (meta_value+0) AS views FROM $wpdb->posts LEFT JOIN $wpdb->postmeta ON ($wpdb->posts.ID = $wpdb->postmeta.post_id) $inr_join WHERE post_status = ‘publish’ AND post_password = ” $term_sql $type_sql AND meta_key = ‘views’ GROUP BY ID ORDER BY views DESC LIMIT $limit“);   
      if ($most_viewed) {   
       foreach ($most_viewed as $viewed) {   
        $post_ID    = $viewed->ID;   
        $post_views = number_format($viewed->views);   
        $post_title = esc_attr($viewed->post_title);   
        $get_permalink = esc_attr(get_permalink($post_ID));   
        $output .= “<li><a href=’$get_permalink‘>$post_title“;   
        if ($show_date) {   
          $posted = date(get_option(‘date_format’), strtotime($viewed->post_date));   
          $output .= “$beforedate $posted $afterdate“;   
        }   
        $output .= “$beforecount $post_views $aftercount</a></li>”;   
       }   
      } else {   
       $output = “<li>N/A</li>n”;   
      }   
      echo $output;   
    }
  3. 使用以下的代码来调用浏览次数最多的文章列表。<?php get_most_viewed_format(); ?>
赞(0)
未经允许不得转载:小叶白龙博客 » WordPress无插件调用浏览次数最多的文章列表
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址