WordPress的图片如果是在发布、编辑时上传的,那么是有一个隶属于关系,即:图片是隶属于这一篇文章。我们可以通过这种隶属关系将文章中的所有图片找出来。在single.php页面的the_loop代码片段中加入:<?php $args = array( 'post_type' => 'attachment…
WordPress的图片如果是在发布、编辑时上传的,那么是有一个隶属于关系,即:图片是隶属于这一篇文章。我们可以通过这种隶属关系将文章中的所有图片找出来。
在single.php
页面的the_loop代码片段中加入:
<?php $args = array( '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); }}?>
下图就是循环输出文章中的图片截图:
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)