菲利普我可以幫助你。
您需要創建兩個循環,一個用於處理sliderview的主要內容,另一個用於填充縮略圖以對應相對的帖子。
這個例子是鬆散的,但你可以在網上找到更好的 - 你要知道,你將要使用的$wp_query
功能,這樣你就可以得到更準確的上市後
我強烈建議使用jQuery Cycle
<!-- loop for slider -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="slider">
<!-- format your posts-->
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<!-- loop for thumbnails -->
<div class="nav">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- format your thumbnails -->
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
// then call your slideshow
$('#slider').after('<ul id="nav">').cycle({
fx: 'scrollHorz',
speed: 'fast',
timeout: 0,
pager: '#nav',
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>';
}
});