最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - How to get images from EDD post?

programmeradmin10浏览0评论

I use Easy Digital Downloads plugin and I wish to get images from the downloads posts types! But with my code, nothing return! Someone for help?

<?php
$attachments = get_posts( array(
'post_type'   => 'attachment',
'orderby' => 'menu_order',
'numberposts' => 5,
'post_status' => null,
'post_parent' => $post->ID,
'post_mime_type' => 'image'
));

if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo wp_get_attachment_image( $attachment->ID, 'item' );
}
}
?>
发布评论

评论列表(0)

  1. 暂无评论