您现在的位置是:首页 > 网站制作 > 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教程 排行榜
很赞哦! ()
随机图文
-
wp_reset_postdata 和 wp_reset_query 的作用与区别
什么时候使用wp_reset_query,什么时候用wp_reset_postdata? -
WordPress 页面模板(Page Template)下拉列表不显示的原因及解决方法
WordPress 的自定义页面模板是一个非常强大好用的功能,使用它新建一些静态页面(Page),添加上一些数据调用的函数,再在网页上做一个导航连接到对应的页面就可以实现很多自定义的功 -
wordpress发布文章HTML标签被自动过滤掉该如何处理?
wordpress发布文章时很多html标签都会自动过滤掉,造成了文章中无法添加<style></style><script></script>等标签。那么该如何如何处理呢? 解决方法一: 将wp-includes文件夹下 -
wordpress 上传的图片不显示的问题 base64,data:image/gif
文章评论
本站推荐
标签云
猜你喜欢
- 如何构建 WordPress 古腾堡编辑器块模板
- WordPress扁平自适应博客主题响应式简约文章模板xiu6.0版本
- 为WordPress文章自动添加自定义栏目
- WordPress获取相邻文章函数:get_adjacent_post
- 如何制作wordpress 网站搜索功能| WordPress教程网
- Element Pack Pro 7.1.2完美汉化中文版|Elementor配套扩展小工具WordPress插件 - 搬主题
- WordPress多语言网站建设:连接全球受众
- 安装WordPress主题及插件提示错误Fatal error: Array and string offset access syntax with curly braces is no longe
- wordpress菜单函数wp_nav_menu()使用
- WordPress初学者入门教程 [03] 域名