在循环外显示粘滞帖子,并从循环中排除 时间:2011-10-12 作者:user9373 我在标题中有一个“特色”区域。显示最新粘性帖子内容的php:$last_sticky_post = get_post(end(get_option(\'sticky_posts\'))); if(!empty($last_sticky_post)): setup_postdata($last_sticky_post); the_content(); endif; 问题是同一篇文章现在在循环中呈现在它的下方-我如何才能抑制粘性文章在循环中出现? 1 个回复 SO网友:chifliiiii 在循环之前,请执行以下操作:$args = array( \'ignore_sticky_posts\' => 1 ); $query = new WP_Query( $args ); // The Loop while ( $query->have_posts() ) : $query->the_post(); echo \'<li>\'; the_title(); echo \'</li>\'; endwhile; 结束 文章导航