仅在Wordpress中查询类别并显示帖子的标题

时间:2012-09-06 09:15:36

标签: wordpress post categories

查询类别帖子并仅显示帖子的标题,我想要代码。请。 让我们说,类别ID是50 ..所以我将看到50类别下的帖子的标题。(Wordpress)谢谢:D

2 个答案:

答案 0 :(得分:2)

根据您在评论中的代码,您的问题是您遗漏了WordPress循环 - 请查看此链接中的代码;

http://codex.wordpress.org/Function_Reference/query_posts

给出的示例与您的任务非常相似。

答案 1 :(得分:1)

在WordPress查询中,您需要在循环中调用标题/内容函数等,例如:

<?php
query_posts( 'cat=51&showposts=5' );
// the Loop
while (have_posts()) : the_post();
    the_title('<h3>', '</h3>');
endwhile;
?>