我想我的循环做错了什么,或者我的代码坏了。我想显示特定类别的所有帖子。无论我做什么,我只会看到1条帖子。
<ol>
<?php
$args = array(
'category_name'=>'test-category',
'posts_per_page' => 15,
'nopaging' => true
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post();
//Post data
echo get_the_post_thumbnail(get_the_ID());
endwhile;
?>
<li data-href="<?php $trink = get_the_permalink(); echo preg_replace("#/$#im", '', $trink);?>">
<div>
<a class="button" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
</li>
</ol>
我在这里做什么错了?
答案 0 :(得分:2)
您的endwhile;
放在错误的位置:构建<li>
标签的代码不在循环内,这就是为什么您仅看到一篇帖子的原因。
应该是:
<ol>
<?php
$args = array(
'category_name' => 'test-category',
'posts_per_page' => 15,
'nopaging' => true
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post();
//Post data
echo get_the_post_thumbnail(get_the_ID());
?>
<li data-href="<?php $trink = get_the_permalink(); echo preg_replace("#/$#im", '', $trink);?>">
<div>
<a class="button" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
</li>
<?php
endwhile;
?>
</ol>