Wordpress自定义blog_query

时间:2013-06-26 02:24:32

标签: wordpress

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

1 个答案:

答案 0 :(得分: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>

我测试了以上代码

OUTPUT的格式为:

<ul id="customList">
<li><a href="[POST LINK]">[POST TITLE]</a></li>
<ul/>