0
我使用「的jQuery插件週期」與WP主題和工作正常,但我不能讓它從自定義字段動態生成控制大拇指... 這裏的代碼:jQuery的週期插件與WordPress
$(function() {
$('#featured').cycle({
fx: 'fade',
pager: '#feat_nav',
timeout: 4000,
rev: true,
pagerAnchorBuilder: pagerFactory
});
function pagerFactory(idx, slide) {
var s = idx > 2 ? ' style=""' : '';
return '<li'+s+'><a href="#"><img src="<?php echo get_post_meta($post->ID, 'img', true) ;?>" alt=""></a></li>'; // this is just an example for what i need to display
};
});
HTML
<ul id="featured">
<?php while (have_posts()) : the_post(); ?>
<li>
<div class="caption-bottom">
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</div>
<img src="" alt="" />
</li>
<?php endwhile; wp_reset_query();?>
</ul>
<ul id="feat_nav"></ul>
任何想法如何做到這一點? 謝謝
謝謝,你的答案非常有幫助,它的工作原理和我現在理解的服務器端和客戶端之間的分離。 對不起,我沒有足夠的聲望投票給你! –
沒問題,很高興提供幫助。那個循環插件是非常有用的。 – lucuma