WordPress获取文章图片附件函数get_children [php] $args = array( 'order' => 'DESC', 'post_mime_type' => 'image', 'post_parent' => get_the_ID(), 'post_status' => null, '......继续阅读
WordPress使用get_attached_media函数获取图片附件 PHP代码: [php] <?php $images = get_attached_media('image' ); // get attached media foreach ($images as $image) { $ximage = wp_get_attachment_image_src($image->ID,'large'); echo......继续阅读