<dl>
<dt><span>置顶</span>推荐</dt>
<?php
query_posts('cat=28&posts_per_page=1'); while (have_posts()) : the_post();
if (is_sticky()): //输出置顶文章
?>
<dd>
<p class="rList_title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></p>
<?php else: //非置顶文章
?>
<?php endif; ?>
<?php endwhile; ?> <?php else: ?> <dd class="nothing">暂无文章...</dd> <?php endif; ?>
</dl>
转载于:https://my.oschina.net/158/blog/386769