我有以下代碼從我用來顯示在存檔頁面的帖子中拉出自動生成的縮略圖圖像。該代碼在我的本地服務器上正常工作,但只要我將它上傳到網絡,它就無法工作。WordPress自動生成的縮略圖問題
----編輯-----
什麼它現在顯示是每一個崗位相同的縮略圖,一個鏈接到的第一篇文章進入。任何想法,爲什麼這可能是?
<ul>
<?php query_posts('cat='.get_query_var('cat').'&order=ASC'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php
//Get images attached to the post
$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'numberposts' => -1,
'order' => 'DESC',
'post_status' => null,
'post_parent' => $post->ID
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
$img = wp_get_attachment_thumb_url($attachment->ID);
break;
}
}
?>
<li>
<img src="<?php echo $img; ?>" alt="" />
<h2 class="small"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
</li>
<?php endwhile; ?>
<?php endif;?>
</ul>
不幸,這也沒有工作 - 雖然它非常有意義,應該工作。 hmmmm ............ – DanC 2009-08-21 14:16:08