WordPress建网站如何调用周排行榜、月排行榜

我们做好了网站,为了体现网站的人气文章,可以在自己的网站上制作一个周排行榜或月排行榜,分别调用一周内网站文章浏…

我们做好了网站,为了体现网站的人气文章,可以在自己的网站上制作一个周排行榜或月排行榜,分别调用一周内网站文章浏览量最多的文章列表和一个月内浏览最多的文章列表。

Wordpress排行榜

WordPress网站建设时,如何调用周排行榜、月排行榜呢?下面学做网站就来分享一下Wordpress调用周排行榜与月排行榜的二段代码。

WordPress调用周排行榜


<?php
function mostweek($where = '') {
    //获取特别近七天的文章
    $where .= " AND post_date > '" . date('Y-m-d', strtotime('-7 days')) . "'";
    return $where;
  }
add_filter('posts_where', 'mostweek'); ?>
 
<?php query_posts("v_sortby=views&caller_get_posts=1&orderby=date&v_orderby=desc&showposts=10") ?>
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
      <li><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></li>
  <?php endwhile; ?>
<?php endif; ?>

WordPress调用月排行榜


<?php
function mostmonth($where = '') {
    //获取特别近30天文章
    $where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
    return $where;
}
add_filter('posts_where', 'mostmonth'); ?>
<?php query_posts("v_sortby=views&caller_get_posts=1&orderby=date&v_orderby=desc&showposts=10") ?>
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
      <li><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></li>
  <?php endwhile; ?>
<?php endif; ?>
类别:WordPress开发

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册