我使用以下代码将图像附加到帖子
$current_id = get_the_ID();
$rows = $wpdb->get_results("select guid from $wpdb->posts where post_parent = $current_id");
foreach ($rows as $row) {
?>
<a href="<?php echo $row->guid; ?>" data-titan-lightbox="on" data-titan-group="<?php the_ID() ?>" style="display: none"><img src="<?php echo $row->guid; ?>" alt="Caption" class="Thumbnail thumbnail " width="228" height="160"></a>
<?php
但这段代码只提供包含图像的文件夹的图像路径。
如何仅从该循环中获取图像?