That page 完全满足您的需求:
仅显示第一个粘性贴子,如果没有,则不返回任何内容:
$sticky = get_option( \'sticky_posts\' );
$args = array(
\'posts_per_page\' => 1,
\'post__in\' => $sticky,
\'ignore_sticky_posts\' => 1
);
query_posts( $args );
if ( $sticky[0] ) {
// insert here your stuff...
}
资料来源:
http://codex.wordpress.org/Sticky_Posts然后在下面添加正常循环