PHP Wordpress根据页面显示类别中的帖子。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress根据页面显示类别中的帖子。相关的知识,希望对你有一定的参考价值。

//if is articles page, get posts from this category id and show 9 of them.
<?php
if (is_page('7') ) {//articles
 query_posts('cat=4&showposts=9');
} elseif ( is_page('9') ) {//freebies
query_posts('cat=5&showposts=9');
} elseif ( is_page('356') ) {//inspiration
query_posts('cat=30&showposts=9');
} elseif ( is_page('949') ) {//tutorials
query_posts('cat=6&showposts=9');
} else {
$cat = '';
}
?>

以上是关于PHP Wordpress根据页面显示类别中的帖子。的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Wordpress 的存档页面上显示所有类别的帖子?

Wordpress 类别模板显示来自所有类别的帖子,而不是特定类别的帖子

突出显示存档中的类别 - WordPress

WordPress:如何使用 $wp_query 按类别过滤帖子?

如何根据wordpress中的当前帖子自动选择一个值?

从 WordPress 中的特定类别获取置顶帖子