【发布时间】:2020-06-08 15:28:30
【问题描述】:
我有一个简单的 WordPress 循环来获取 100 个最新帖子。如何更改此设置以根据我所在的类别动态显示帖子?
<?php
// the query
$wpb_all_query = new WP_Query(array(
'post_type' => 'post',
'post_status' => 'publish',
'post-no' => 100));
?>
<?php if ($wpb_all_query->have_posts()) :
while ($wpb_all_query->have_posts()) : $wpb_all_query->the_post(); ?>
<img class="card-img-top bottom-line mb-2 lozad "
data-src="<?php the_post_thumbnail_url(); ?>"
alt="<?php the_title(); ?>"/>
<?php endwhile; ?>
<?php else : ?>
【问题讨论】: