query_posts函数是WordPress查询文章里面比较常用的函数,当然WordPress调用文章函数有很多,今天主题君主要给大家讲解下query_posts这个函数。
query_posts的基本用法
<?php query_posts( $args );?><?php while( have_posts()): the_post();?>…<?php endwhile;?><?php wp_reset_query();?>
query_posts函数添加在主循环前,如果后面还有循环函数,需要在循环结束后增加<?php wp_reset_query(); ?>来重置query。
使用query_posts获取多属性文章
cat = 1 就是获取分类为1的文章、posts_per_page是文章数量
<?php$args=array(cat=>1,posts_per_page=>5,orderby=>date);?><?php while( have_posts()): the_post();?>…<?php endwhile;?><?php wp_reset_query();?>
orderby=date?按发布日期排序
orderby=modified 按修改时间排序
orderby=ID 按文章ID排序
orderby=comment_count 按评论最多排序
orderby=title 按标题排序
orderby=rand 随机排序
文章标题:WordPress查询文章函数:query_posts
文章链接:https://www.1001r.cn/756.html
更新时间:2024年01月07日
站内部分内容由互联网用户自发贡献,该文观点仅代表作者本人。
本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请联系我们xiuzheng@1001c.cn我们将第一时间处理!