从列出所有项目更改一段时间仅列出x项目(可能)

时间:2016-02-25 20:40:35

标签: php wordpress

有人可以帮助新手改变时间只列出x数量的物品吗?

我的最终目标是列出10个帖子......而不是1000个;)lol

我的代码是:

<div class="partner-widget">
<br>
<?php 
$author_ID = get_query_var('author');
$t2 = 'cat= 666&author=' . $author_ID . '&order=ASC&showposts=-1';
query_posts($t2);
if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><hr>
<?php endwhile; endif; ?>
</div>

2 个答案:

答案 0 :(得分:0)

使用limit参数并限制您收到的帖子数。

答案 1 :(得分:0)

实现这一目标的最佳方式实际上是更改$t2以限制您的帖子:

$t2 = 'cat= 666&author=' . $author_ID . '&order=ASC&showposts=10';

完整可能会是这样的:

<div class="partner-widget">
<br>
<?php 
$author_ID = get_query_var('author');
$t2 = 'cat= 666&author=' . $author_ID . '&order=ASC&showposts=10';
query_posts($t2);
if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><hr>
<?php endwhile; endif; ?>
</div>

希望这会有所帮助。 :)