-1

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

4

2 回答 2

2

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

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

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

于 2012-09-06T09:43:15.020 回答
1

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

<?php
query_posts( 'cat=51&showposts=5' );
// the Loop
while (have_posts()) : the_post();
    the_title('<h3>', '</h3>');
endwhile;
?>
于 2013-09-24T10:27:02.597 回答