0
在我的滑塊(s3Slider JQuery)調用的那一刻,顯示最後5個帖子。它從標有「拇指」的自定義字段抓取圖像。在滑塊中過濾帖子
我希望滑塊只能調用在'thumb'自定義字段中具有值的圖像。這可能嗎?
當前查詢...提前
<?php
$my_query = new WP_Query('showposts=5');
while ($my_query->have_posts()) : $my_query->the_post();
?>
<li class="sliderImage"> <a href="<?php the_permalink() ?>" rel="bookmark"> <img class="featimg" src="<?php echo get_post_meta($post->ID, 'thumb', true) ?>" alt="<?php the_title(); ?>" />
<span class="des"><h1><?php the_title(); ?></h1><?php the_excerpt(); ?></span>
</a>
</li>
<?php endwhile; ?>
感謝。