[wp-trac] [WordPress Trac] #22590: get_post_class() do not set 'sticky' class in administration posts table
WordPress Trac
noreply at wordpress.org
Mon Nov 26 09:31:55 UTC 2012
#22590: get_post_class() do not set 'sticky' class in administration posts table
---------------------------------------+-------------------------
Reporter: corsonr | Type: enhancement
Status: new | Priority: normal
Milestone: Awaiting Review | Component: Appearance
Version: 3.4.2 | Severity: minor
Keywords: needs-patch needs-testing |
---------------------------------------+-------------------------
get_post_class() does set a 'sticky' class to sticky post on the frontend
but not in the administration. So, there's no way to differentiate a
sticky post from another non-sticky post excepted the span element to its
right.
Adding something similar to this fix the problem:
// sticky for Sticky Posts in administration
if ( is_sticky($post->ID) && is_admin() )
$classes[] = 'post-sticky';
--
Ticket URL: <http://core.trac.wordpress.org/ticket/22590>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list