本文讲的是wp分类页如何只显示置顶文章,而不是置顶显示置顶文章。
可以在主题的functions.php末尾添加如下代码:
/**
Products
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 );
}
} );Demand feedback