欢迎光临
我们一直在努力

在 WordPress 循环中排除置顶文章

建站超值云服务器,限时71元/月

本文目录
[隐藏]

  • 1取消置顶,按普通方式输出文章
  • 2彻底排除置顶文章,不输出

WordPress 默认会在循环(Loop)中显示置顶文章,但是在主题开发中,也许为了布局需求,你需要在 WordPress 循环中排除置顶文章。

取消置顶,按普通方式输出文章

1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
$args = array(
	'posts_per_page' => 10, //每页显示10篇文章
	'ignore_sticky_posts' => 1 //取消文章置顶
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
 
//在这里插入循环内部代码
 
endwhile; //结束while
endif; //结束if
?>

<?php $args = array( ‘posts_per_page’ => 10, //每页显示10篇文章 ‘ignore_sticky_posts’ => 1 //取消文章置顶 ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); //在这里插入循环内部代码 endwhile; //结束while endif; //结束if ?>

‘ignore_sticky_posts’ => 1 就是关键参数,取消文章置顶(即不在顶部显示),按照普通方式输出文章

彻底排除置顶文章,不输出

1
2
3
4
5
6
7
8
9
<?php
$the_query = new WP_Query( array( 'post__not_in' => get_option( 'sticky_posts' ) ) );
if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
 
//在这里插入循环内部代码
 
endwhile; //结束while
endif; //结束if
?>

<?php $the_query = new WP_Query( array( ‘post__not_in’ => get_option( ‘sticky_posts’ ) ) ); if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); //在这里插入循环内部代码 endwhile; //结束while endif; //结束if ?>

‘post__not_in’ => get_option( ‘sticky_posts’ ) 是关键参数,彻底排除置顶文章(凡是置顶文章都不输出)。假如你在已经在首页的其他地方(比如幻灯中)显示了置顶文章,那么,接下来的主循环中排除置顶文章,这样就可以避免重复显示。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在 WordPress 循环中排除置顶文章
分享到: 更多 (0)