任何人都可以建议我为wordpress存储所有图像的功能是什么?我只需要列出在wordpress admin菜单Media下看到的所有图像。
提前致谢
答案 0 :(得分:25)
上传的图像存储为“附件”类型的帖子;使用带有正确参数的get_posts()。在the Codex entry for get_posts()中,此示例:
<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => null, // any parent
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $post) {
setup_postdata($post);
the_title();
the_attachment_link($post->ID, false);
the_excerpt();
}
}
?>
...遍历所有附件并显示它们。
如果您只是想获取图像,正如TheDeadMedic所评论的那样,您可以在参数中使用'post_mime_type' => 'image'
进行过滤。
答案 1 :(得分:2)
<ul>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID
);
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo '<li>';
echo wp_get_attachment_image( $attachment->ID, 'full' );
echo '<p>';
echo apply_filters( 'the_title', $attachment->post_title );
echo '</p></li>';
}
}
endwhile; endif; ?>
</ul>