我有一个显示所有帖子的 wordpress 循环。我需要计算特定帖子的所有图像。
<?php while ( $the_query->have_posts() ) : $the_query->the_post();
$attachments = get_children( array( 'post_parent' => $post->ID, 'post_mime_type' => 'image' ) );
$count = count( $attachments );
$specific = array();
$i = 1;
foreach ( $attachments as $attachment ) {
$specific[$attachment->ID] = $i;
++$i;
} ?> <a href="#"><?php echo $count; ?></a>
<?php endwhile; ?>
问题是,它不起作用并且不显示图像计数。