在Wordpress网站上工作。 有一些帖子和图片。
尝试在de have_post循环中从帖子中获取te图像。 (大多数帖子只有一张图片。)
我已经想出了如何使用:
wp_get_attachment_image_src ( int $attachment_id, string|array $size = 'thumbnail', bool $icon = false )
应返回带有属性的数组。 array [0] = url。 现在我不知道如何收到attachments_id。我知道我可以在管理面板中获取它,但我需要在has_post循环中使用它。
Have_post循环:
if (have_posts())
while (have_posts()) : the_post();
if (in_category('Referenties')) {
if ($ReferenceAmount % 4) {
?>
<div class="references-row">
<div class="reference">
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id( $post_id )); ?>
<div class="reference-figure" style="background-image: url('<?php echo $image[0]; ?>')"></div>
</div>
</div>
不给任何东西。刚开始使用Wordpress,请不要讨厌。谢谢!