对不起,但是的使用范围是什么JSON API
插件在这里?
你只需要在页面的标记中添加一周的广告(或你需要的任何信息)。
假设你的循环是这样的:
<ul id="postlist">
<?php while( have_posts() ) : the_post(); ?>
<li id="post_<?php the_ID(); ?>" class="post">
<h2><?php the_title(); ?></h2>
<p><?php the_content(); ?></p>
</li>
<?php endwhile; ?>
</ul>
您应该只添加周信息:
<ul id="postlist">
<?php
while( have_posts() ) : the_post();
$week = get_the_time(\'W\');
?>
<li id="post_<?php the_ID(); ?>" data-week="<?php echo $week; ?>" class="post">
<h2><?php the_title(); ?></h2>
<p><?php the_content(); ?></p>
</li>
<?php endwhile; ?>
</ul>
之后,您的js代码可以是(请在页面上适当排队):
$( "#postlist" ).listview({
autodividers: true,
autodividersSelector: function ( li ) {
var out = \'Week \' + $( li ).data(\'week\');
return out;
}
});
我不是jQuery UI Mobile的专家,但这应该可以。