本文讲的是wp分类页面如何只显示置顶的文章,而不是显示置顶文章在最上面哦。

可将以下代码加入到主题的functions.php最后面:

/**  * Category Archives: Only display sticky posts for each category term  */  add_action( 'pre_get_posts', function( WP_Query $q )  {  if( ! is_admin() && $q->is_category() && $q->is_main_query() )  {  $sticky_posts = get_option( 'sticky_posts' );  if( ! empty( $sticky_posts ) )  $q->set( 'post__in', (array) $sticky_posts );  }  } );
www.npspro.top互联侠客
软师傅 » WordPress分类页面如何只显示置顶的文章

最TOP的Docker,软路由,虚拟机等学习资料

立即查看 了解详情