鹿泽鹿泽  2024-07-06 23:34:01 鹿泽笔记 隐藏边栏  0 

使用Wordpress做网站,有时需要在网站的侧边栏调用热门文章,我们经常是按评论数进行排序的,今天介绍一下如何调用以浏览量排序的热门文章的方法。

其实很多Wordpress主题都自带这个小工具的,没有那么麻烦的,但是喜欢用代码的还是可以的。

教程如下:

在自己的WORDPRESS网站模板函数文件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');  
/// 函数名称:post_views  
/// 函数作用:取得文章的阅读次数  
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;  
}

在需要调用按浏览量排序的热门文章位置,使用以下的代码进行调用文章列表:

<ul>
           <?php $args=array(
         'meta_key' => 'post_views_count',
         'orderby' => 'meta_value_num',
         'posts_per_page'=>6,
         'order' => 'DESC'
    );
    query_posts($args);  while (have_posts()) : the_post();?>
       <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><span class="kc-view fright">浏览:<?php setPostViews(get_the_ID()); echo number_format(getPostViews(get_the_ID())); ?></span></li>    
    <?php endwhile;wp_reset_query();?>
        </ul>
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505