Make WordPress Core

Opened 18 years ago

Closed 18 years ago

Last modified 6 years ago

#4628 closed enhancement (fixed)

Make post status more visible on Manage/Posts tab

Reported by: tellyworth's profile tellyworth Owned by:
Milestone: 2.3 Priority: normal
Severity: normal Version:
Component: Administration Keywords:
Focuses: Cc:

Description

It's often difficult or impossible to distinguish between different post status types on the Manage/Posts page.

This patch adds a new CSS class to each table row based on the post_status value: 'status-publish', 'status-draft', 'status-future', etc.

I haven't changed the admin CSS to take advantage of this; I'll leave that task for the design experts. Example CSS selectors below:

#the-list tr.status-future { /* future row */ }
#the-list tr.status-draft td { /* draft cell */ }
#the-list tr.status-publish th { /* published heading */ }

Attachments (2)

manage-post-status-class-r5797.patch (503 bytes) - added by tellyworth 18 years ago.
manage-post-status-class-r5797-a.patch (669 bytes) - added by tellyworth 18 years ago.

Download all attachments as: .zip

Change History (5)

#1 @tellyworth
18 years ago

manage-post-status-class-r5797-a.patch is an alternate patch with an additional feature. As well as the status class, it applies a second class to indicate whether the owner of the post is the current user ('author-self') or someone else ('author-other').

#2 @ryan
18 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [5799]) Add classes that indicate post status and author ownership. Props tellyworth. fixes #4628

This ticket was mentioned in Slack in #core-js by gziolo. View the logs.


6 years ago

Note: See TracTickets for help on using tickets.