如何通过标签在首页显示特定类别的帖子

时间:2016-02-11 09:07:37

标签: php wordpress post tabs categories

我在首页的头部插入了一些引导程序导航标签,任何此标签都用于指定的帖子类别。 如何点击其中一个标签和我想要的某个类别的帖子,显示在该标签上。

1 个答案:

答案 0 :(得分:0)

您必须添加循环过滤器并在每个选项卡上特定地查询类别。

<?php global $query_string; // required
$posts = query_posts($query_string.'&cat=12'); // only show posts from category with the ID 12 ?>

<?php // YOUR USUAL LOOP HERE ?>

<?php wp_reset_query(); // reset the query ?>

您还可以排除类别

<?php global $query_string; // required
$posts = query_posts($query_string.'&cat=-12'); // Show al posts that are NOT in category with ID 12 ?>

<?php // YOUR USUAL LOOP HERE ?>

<?php wp_reset_query(); // reset the query ?>

这是wordpress docu http://codex.wordpress.org/Template_Tags/query_posts看看&#34;组合参数&#34;

已在这里得到解答:Only show specific category in wordpress loop?