我只想按博客类别进行过滤
我无法显示任何内容-已经有一段时间了-我已经尝试了几乎所有我遇到的所有帖子,但是没有任何效果。
它必须很简单-我只是无法抓住它。
<?php
$args = array(
'post_type' => 'resource',
'post_status' => 'publish',
'cat' => '3', //we can pass comma-separated ids here
'posts_per_page' => 5,
);
$resources = new WP_Query( $args );
if( $resources->have_posts() ) :
?>
<ul class="row medium-up-2 large-up-3 no-bullet resources-list" data-equalizer>
<?php
while( $resources->have_posts() ) :
$resources->the_post();
?>
<li class="column">
<a href="<?php echo get_permalink(); ?>">
<div class="resources-thumbnail" style="background-image: url(<?php echo get_field('background'); ?>);"></div>
<div class="resources-category"><?php echo get_the_title(); ?></div>
<h5>
<?php echo wp_trim_words( get_the_content(), 13, '...' ); ?>
</h5>
</a>
</li>
<?php
endwhile;
?>
</ul>
<?php
else :
endif;
?>