凉风有信,秋月无边。
亏我思娇的情绪好比度日如年。

wordpress获取分类下文章列表四种方法

《wordpress获取分类下文章列表四种方法》正文开始,本次阅读大概3分钟。

一、使用query_posts()函数

以下代码实际上使用query_posts()函数调取分类目录下的文章,showposts是调取的数量。

?php
$cats=get_categories();
foreach($catsas$cat){
query_posts(showposts=10cat=.$cat-cat_ID);
?
h3?phpecho$cat-cat_name;?/h3
ulclass=sitemap-list
?phpwhile(have_posts()){the_post();?
liahref=?phpthe_permalink();??phpthe_title();?/a/li
?php}wp_reset_query();?
/ul
?php}?

在官方文档中,这样强调:“如果我们不得不用到query_posts(),必须确保每次使用query_posts()后同时执行wp_reset_query();”。这就是为什么在上面的代码中加上了wp_reset_query()的原因。

修改其中的数字10可以设定显示的篇数,可用于在单页面上显示全部分类文章。

二、使用get_posts()函数

只需通过get_posts来获取分类ID就可以输出分类下的文章,以及通过numberposts来控制文章显示的数量。

?php$posts=get_posts(category=4numberposts=10);?
?phpif($posts):?
ul?phpforeach($postsas$post):setup_postdata($post);?
li
ahref=”?phpthe_permalink()?”rel=”bookmark”title=”?phpthe_title();?”?phpthe_title();?/a
/li
?phpendforeach;?
/ul
?phpendif;?

三、结合wp_list_categories()函数输出分类标题

h2?phpwp_list_categories(include=11title_li=style=none);?/h2
!--//输出ID为11的分类的标题--
?phpechocategory_description(11);?
!--//输出ID为11的分类的描述--
?phpquery_posts(showposts=10cat=11);?
!--//query_posts给TheLoop限定的条件是:显示12篇日志和分类ID为11--
?phpwhile(have_posts()):the_post();?
!--//TheLoop开始--
li
ahref=?phpthe_permalink()?rel=bookmarktitle=?phpthe_title();??echowp_trim_words(get_the_title(),24);?/a
?phpthe_time(m/d);?
/li
!--//用列表的方式输出带有链接的文章标题--
?phpendwhile;wp_reset_query();?
!--//TheLoop结束--

四、自定义函数

1、我们自定义一个函数popularPosts()

functionpopularPosts($num){
global$wpdb;

$posts=$wpdb-get_results(SELECTcomment_count,ID,post_titleFROM$wpdb-postsORDERBYcomment_countDESCLIMIT0,$num);

foreach($postsas$post){
setup_postdata($post);
$id=$post-ID;
$title=$post-post_title;
$count=$post-comment_count;

if($count!=0){
$popular.=li;
$popular.=ahref=.get_permalink($id).title=.$title..$title./a;
$popular.=/li;
}
}
return$popular;
}

这里使用get_results()查询了数据库,相对速度快一点。2、调用函数 popularPosts(10) 显示10篇文章。

divclass=popular
h2MostPopularPosts/h2
ul
?phpechopopularPosts(10);?
/ul
/div

赞(33)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的内容,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。本博客资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。如果本文导致的版权问题以及内容纠错问题请联系站长QQ:1004619 | 点此给我发送邮件
本文标题:wordpress获取分类下文章列表四种方法
本文地址:https://www.1004619.com/nn/wordpresshqflxwzlbszff.html