从Wordpress上的Post获取附加图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Wordpress上的Post获取附加图像相关的知识,希望对你有一定的参考价值。
'post_parent' => get_the_ID(), 'post_type' => 'attachment', 'numberposts' => $qty, 'post_mime_type' => 'image',))) { foreach( $images as $image ) { $attachmenturl=wp_get_attachment_url($image->ID); $attachmentimage=wp_get_attachment_image( $image->ID, $size ); echo '<li><a href="'.$attachmenturl.'" rel="shadowbox[photos]">'.$attachmentimage.'</a></li>' . " "; } } else { echo "No Image"; } } ?>
以上是关于从Wordpress上的Post获取附加图像的主要内容,如果未能解决你的问题,请参考以下文章