0
我認爲我下面使用的查詢有問題。我想用自己喜歡的按鈕來顯示多個縮略圖。所有的工作都很好,但是當你按下1按鈕時,它也會像所有其他圖像一樣。嘗試了重置查詢,但我想這不起作用或者我錯了。有人得到一個類似的問題,或知道如何解決這個問題?Facebook like button對所有帖子作出反應
<?php query_posts('cat=1'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php $thumb = get_post_meta($post->ID, 'thumb', $single = true); ?>
<ul>
<li>
<a href="<?php the_permalink() ?>" title="View <?php the_title(); ?>'s showcase"><img src="<?php echo $thumb; ?>" alt="View <?php the_title_attribute(); ?>'s showcase" width="150" height="111" /></a>
<div class="design"><a href="<?php the_permalink() ?>" title="View <?php the_title(); ?>'s showcase"><?php the_title(); ?></a></div>
<div class="subtitle"><a href="<?php the_permalink(); ?>">view feature</a></div>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
</div>
<!-- AddThis Button END -->
</li>
</ul>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
<?php wp_reset_query() ?>
工程!感謝喬納斯! – AKNL 2012-04-14 09:23:31