Opened 6 months ago

Last modified 5 months ago

#22590 new enhancement

get_post_class() do not set 'sticky' class in administration posts table — at Version 2

Reported by: corsonr Owned by:
Priority: normal Milestone: Awaiting Review
Component: Administration Version: 3.4.2
Severity: minor Keywords: has-patch needs-testing
Cc: xoodrew@…

Description (last modified by SergeyBiryukov)

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';

Change History (2)

  • Component changed from Appearance to Administration
  • Description modified (diff)
Note: See TracTickets for help on using tickets.