我正在尝试获取特定术语的附件(在其存档页中)。但是结果显示了5次结果图像,而不是一次。
我在这个页面上有多个循环——一个用来显示相关帖子,另一个用来显示相关产品(自定义帖子),还有一个用来显示相关图片。自定义帖子和帖子运行良好,但我无法以正确的方式显示附件:s
<?php $queried_object = get_queried_object();
$term_id = $queried_object->term_id;
$args = array(
\'post_status\' => \'inherit\',
\'numberposts\' => 0,
\'post__not_in\' => array_merge($do_not_duplicate,get_option( \'sticky_posts\' )),
\'post_type\' => \'attachment\',
);
$args[\'tax_query\'] = array(
array(
\'taxonomy\' => \'t-arte\',
\'terms\' => $term_id,
\'field\' => \'id\',
),
); ?>
<?php $t = $data[\'t-arte\'];
$array = explode(" ", $t);
$array = array_unique($array);?>
<?php $media_query = array_unique($array); ?>
<?php $media_query = get_posts($args);
if( !empty( $media_query ) ) :
foreach ($media_query as $media_query) :
global $post; $post = $media_query;
setup_postdata($media_query);
?>
<div id="archivespage-media-item">
<?php $attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo \'<div id="imagem">\';
the_attachment_link( $attachment->ID, true );
echo \'</div>\';
}
}?>
</div>
<?php endforeach;else :?>
<p>Ainda não temos nenhuma imagem relacionada :(</p>
</div>
<?php endif; ?>
<?php wp_reset_query();?>