Make WordPress Core

Opened 13 years ago

Closed 12 years ago

#25432 closed enhancement (duplicate)

Making a custom admin UI for browsing posts is hard

Reported by: ericlewis Owned by:
Priority: normal Milestone:
Component: Posts, Post Types Version: 3.8
Severity: normal Keywords: needs-patch
Cc: Focuses: administration

Description

If you want to use a custom UI for browsing posts instead of using the core default WP_List_Table UI, the options you have are hacky at best.

There is no short-circuit hook in wp-admin/edit.php, nay, not even a single hook within the main 'div.wrap' to afford developers to output their markup. This seems like it might be the most straight-forward, familiar option, a la the short-circuit filters in shortcodes.

List Table Factory is not pluggable (#18449), which might've been a hacky option to stuff markup into a custom WP_List_Table object.

We do have the 'load-edit.php' hook, in which we can sniff the $_REQUEST, and stuff a copy of the entirety of wp-admin/edit.php into. This is our first option that could work, but woah that's hacky.

Change History (5)

#1 @klihelp
13 years ago

One example for this could be a thumbnails (boxes) view of the posts instead of lines (rows) views.

#2 @jrbeilke
13 years ago

  • Cc jrbeilke@… added

#3 @nacin
13 years ago

  • Component AdministrationPosts, Post Types
  • Focuses administration added

#4 @wonderboymusic
12 years ago

  • Keywords dev-feedback removed
  • Milestone Awaiting ReviewFuture Release

#5 @wonderboymusic
12 years ago

  • Milestone Future Release
  • Resolutionduplicate
  • Status newclosed

#29881 has code and stuff

Note: See TracTickets for help on using tickets.