From 93ea9862a54971ac1378a5a87a099c67417a134c Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 16 Dec 2014 17:34:17 +0000 Subject: [PATCH] Revert [30036]. see #18035 git-svn-id: https://develop.svn.wordpress.org/trunk@30912 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index 75a6eeaf2a..f13a458b56 100644 --- a/src/wp-includes/post-template.php +++ b/src/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';