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

WordPress网站建设时,如何调用周排行榜、月排行榜呢?下面学做网站就来分享一下Wordpress调用周排行榜与月排行榜的二段代码。
WordPress调用周排行榜
'" . date('Y-m-d', strtotime('-7 days')) . "'";
return $where;
}
add_filter('posts_where', 'mostweek'); ?>
WordPress调用月排行榜
'" . date('Y-m-d', strtotime('-30 days')) . "'";
return $where;
}
add_filter('posts_where', 'mostmonth'); ?>
文章来源于互联网
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容