我正在运行一个dwfocus新闻网站,我想将我的li-loop分类分为两部分,请告诉我如何继续,谢谢。
<div class="headlines" data-interval="<?php echo ($interval>0)?$interval*1000:\'false\'; ?>">
<ul>
<?php
$i = 0;
while ( $r->have_posts() ) {
$r->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><span class="time_diff"><?php echo \' - \' . dw_human_time_diff( get_the_time(\'U\'), current_time(\'timestamp\') ); ?></span></li>
<?php } ?>
</ul>
</div>