仅显示wordpress中当前帖子的附加图像

时间:2015-11-10 11:38:24

标签: wordpress image post

我想分别显示我的帖子文字和图片,就像在两个不同的栏目中一样。

我在网上发现了露水技巧。不幸的是,他们工作但不是我想要他们的方式。它显示媒体中存在的所有图像,而不是我在当前帖子中插入的图像。我在几乎所有与此主题相关的解决方案中都找到了以下代码段。

代码:

<?php
$args = array( 'post_type' => 'attachment', 'post_status' => 'any', 'post_parent' => $post->ID );
$attachments = get_post($args);
if ($attachments) {
foreach ( $attachments as $attachment ) {
echo '<div class="col-md-4 col-sm-4 col-xs-6">';
the_attachment_link( $attachment->ID , flase );
echo '</div>';
}
}
wp_reset_postdata();
?>

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

$images = get_attached_media('image');

然后,您可以使用现有的foreach循环