您现在的位置是:首页 > 网站制作 > WordpressWordpress

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

杰帅2023-07-16【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; ?>

Tags:WordPress建站   wordpress教程   排行榜

很赞哦! ()

文章评论

本站推荐

站点信息

  • 建站时间:2018-10-24
  • 网站程序:帝国CMS7.5
  • 主题模板《今夕何夕》
  • 文章统计1172篇文章
  • 标签管理标签云
  • 统计数据百度统计
  • 微信公众号:扫描二维码,关注我们