我正在使用一段 php 来回显几个类别中的所有帖子。
$blog_query = 'showposts=100&cat=8&paged='.$paged;
$posts = query_posts($blog_query);
while (have_posts()) : the_post();
endwhile;
它用标题和帖子内容呼应帖子。
我想编辑该功能,以便我可以以我自己的自定义格式(没有帖子内容)回显内容。
<ul id="customList">
<li><a href="[POST LINK]">[POST TITLE]</a></li>
<ul/>