建站教程

建站教程

Products

当前位置:首页 > 建站教程 >

如何在 WordPress 分类页面上只显示粘性文章

GG网络技术分享 2025-03-18 16:15 1


本文讲的是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 );

}

} );

标签: WordPress op

提交需求或反馈

Demand feedback