diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 75a6eeaf2a..f13a458b56 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -436,7 +436,7 @@ function get_post_class( $class = '', $post_id = null ) { // sticky for Sticky Posts if ( is_sticky( $post->ID ) ) { - if ( is_home() && ! is_paged() && ! get_query_var( 'ignore_sticky_posts' ) ) { + if ( is_home() && ! is_paged() ) { $classes[] = 'sticky'; } elseif ( is_admin() ) { $classes[] = 'status-sticky';