我想在档案馆中显示图像库。php或类别。php。正在显示特色图像和文本内容,但不显示图像库。下面是类别内的代码。php。我已经测试过显示“博客”类别中的一篇文章。
$args = array(
\'post_type\' => \'post\',
\'post_status\' => \'any\',
\'cat\'=>3,
\'meta_query\'=>
array(\'relation\'=>\'AND\',
array(
\'key\'=>\'intro_post\',\'value\'=>\'intro\',\'type\'=>\'CHAR\',\'compare\'=>\'LIKE\'
)
)
);
$arr_posts = new WP_Query( $args );?>
<?php if ( $arr_posts->have_posts() ) : ?>
<?php while ( $arr_posts->have_posts() ) : $arr_posts->the_post(); ?>
<div class="entry-content">
<?php if (has_post_thumbnail()): ?>
<figure>
<?php the_post_thumbnail(\'full\');?>
</figure>
<?php endif; ?>
<?php the_content(); ?>
</div><!-- .entry-content -->
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( \'template-parts/content\', \'none\' ); ?>
<?php endif;
wp_reset_query();