【发布时间】:2015-05-25 07:57:15
【问题描述】:
我正在尝试从添加到帖子库的图像中获取 wordpress 上的图像 url 数组,我真的不知道我在这里做错了什么,但我认为我没有从中得到正确的数组wordpress,谁能帮我解决这个问题?
<?php
if(have_posts()) : while(have_posts()) : the_post();
$gallery = get_post_gallery_images(the_post());
$i = 0;
foreach($gallery as $image)
{
echo('<div>');
echo('<img u="image" src="'.$image.'" alt="'.the_title().$i.'" title="'.the_title().$i.'"/>');
echo('<img u="thumb" src="'.$image.'" alt="'.the_title().$i.'" title="'.the_title().$i.'"/>');
echo('</div>');
$i++;
}
endwhile; endif; ?>
?>
【问题讨论】:
标签: php wordpress image slider