1
我想在wordpress中製作幻燈片,我爲它製作了一個類別,現在我想爲我的幻燈片顯示該類別的圖像。這裏是我的代碼的一部分:在Wordpress中獲取圖像
<div id="slide-show">
<ul>
<?php query_posts('cat=1'); while(have_posts()): the_post();?>
<li>
<a href="<?php the_permalink();?>">
<img src="<?php
$image=wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'thumbnail');
echo $image[0];?>" alt="<?php the_title();?>" /></a>
</li>
<?php endwhile; wp_reset_query();?>
</ul>
</div>
但它不起作用。有人可以幫我嗎?
@Pekka:我已經試過 –
什麼是不工作?列表是否被解析,但src屬性爲空? – Mark
你解決了這個問題嗎? – brasofilo