位置:首页 > CMS教程 > WordPress

WordPress建网站如何调用周排行榜、月排行榜(wordpress 文档)

发布时间:2023-04-10 08:32:05

文章来源:快乐收录网

访问次数:

 

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

L19快乐收录网

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

WordPress调用周排行榜L19快乐收录网

<?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调用月排行榜L19快乐收录网

<?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; ?>
L19快乐收录网

  《WordPress建网站如何调用周排行榜、月排行榜(wordpress 文档)》更新于时间:2023-04-10 08:32:05;由本站小编进行发布,目前浏览的小伙伴达到,感谢你们的支持,后期快乐收录网小编会继续为大家更新更多相关的文章,希望广大网友多多关注快乐收录网工作心得栏目,如果觉得本站不错,那就给我们一个分享的支持吧!

WordPress建网站如何调用周排行榜、月排行榜(wordpress 文档)特别声明

本站快乐收录网提供的WordPress建网站如何调用周排行榜、月排行榜(wordpress 文档)都来源于网络,不保证文章的准确性和真实性,同时,对于该文章所造成的影响,不由快乐收录网实际控制,在2023-04-10 08:32:05收录时,该网页上的内容,都属于合规合法,如有侵权违规,可以直接联系网站管理员进行整改或删除,快乐收录网不承担任何责任。

快乐收录网:致力于优质、实用的网络站点资源收集与分享!本文地址:https://nav.klxjz.cn/CMS/WordPress/93261.html转载请注明

标签: