在存档或类别页面中显示图片库

时间:2018-05-08 作者:Phyo

我想在档案馆中显示图像库。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();

2 个回复
SO网友:huykon225

如果帖子有post_format 是gallery,您可以通过以下方式获得所有Galleries:get_post_gallery_images(get_the_ID());查看更多信息:https://pippinsplugins.com/retrieving-image-urls-of-galleries/

SO网友:Phyo

我把它修好了。我在pre\\u get\\u posts挂钩中将查询“post\\u type”设置为“attachment”和“post”。所以现在图片库是以归档或分类的方式显示的。

结束