我正在使用带有 WP 主题的“jquery 循环插件”并且工作正常,但我不能让它从自定义字段动态生成控制拇指......这里的代码:
$(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>
知道如何做到这一点吗?谢谢