Wordpress画廊图片网址到数组

时间:2015-03-22 05:43:37

标签: php wordpress image slider

我试图通过添加到帖子库中的图片在wordpress上获取一系列图片网址,但我真的不知道我在这里做错了什么,但我想我不会# 39;从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; ?>
?>

1 个答案:

答案 0 :(得分:0)

尝试使用&#34; $ post-&gt; ID&#34;相反&#34; the_post&#34;在$ gallery里面这样:

$gallery = get_post_gallery_images( $post->ID );