0

我正在使用一段 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/>
4

1 回答 1

3
<ul id = "customList">
<?php
$blog_query = 'showposts=100&cat=8&paged='.$paged;
// The Query
query_posts( $blog_query );
// The Loop
while ( have_posts() ) : the_post(); ?>

<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>

<?php endwhile;
// Reset Query
wp_reset_query();
?>
</ul>

我测试了上面的代码

输出将采用以下格式:

<ul id="customList">
<li><a href="[POST LINK]">[POST TITLE]</a></li>
<ul/>
于 2013-06-26T06:20:51.707 回答