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

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

我们做好了网站,为了体现网站的人气文章,可以在自己的网站上制作一个周排行榜月排行榜,分别调用一周内网站文章浏览最多的文章列表和一个月内浏览最多的文章列表。图片[1]-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; ?>
版权声明
转载请注明本文地址:https://www.e363.com/1571.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞19赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容