您可以在活动主题的functions.php
文件以完成此操作。
function wpse_125862_exclude_sticky_post( $query ) {
if ( $query->is_main_query() && $query->is_category() ) {
// Will ignore all the sticky posts
$query->set( array( \'post__not_in\' => get_option( \'sticky_posts\' ) );
}
}
add_action( \'pre_get_posts\', \'wpse_125862_exclude_sticky_post\' );