Opened 13 years ago
Closed 13 years ago
#19154 closed defect (bug) (fixed)
Add a (simple) way to disable the help tab.
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.3 | Priority: | normal |
Severity: | normal | Version: | 3.3 |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
Currently, disabling the default help takes some filter-filled goodness. We should have a better, API-sanctioned way.
As for use cases — the new About screen in core is a prime example.
Attachments (1)
Change History (6)
Note: See
TracTickets for help on using
tickets.
The default help might change once the sidebar and such is set, so we'll use this ticket to track it.
I'm thinking a method that either kills (or sets) the default help, or all help.
One option would be a simple filter that we could do either before admin-header is included, or that a plugin could do on load-$pagenow:
add_filter( "show_help_" . get_current_screen()-id, '__return_false' )
Or something like that.