在single.php页面的the_loop代码片段中加入:
<?php $args = array( 39;post_type' => 'attachment', // 属于附件类型 'numberposts' => -1, // 查出所有内容 'post_status' => null, // 发布状态 'post_mime_type' => 'image', // 附件类型为图片 'post_parent' => $post->ID // 从属于这篇文章); $attachments = get_posts( $args );// 如果存在if ( $attachments ) { // 循环输出 foreach ( $attachments as $attachment ) { var_dump($attachment); }}?>
下图便是循环输出文章中的图片截图: