Opened 5 years ago
Closed 5 years ago
#4783 closed defect (bug) (fixed)
Invalid hooks listed in Code Reference
Reported by: | johnbillion | Owned by: | coffee2code |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Developer Hub | Keywords: | |
Cc: |
Description
When viewing the https://developer.wordpress.org/reference/hooks/ page, the first three hooks listed are invalid and don't exist. Clicking through to their source on Trac reveals that they no longer exist.
- $per_page
- ‘handle_bulk_actions-‘ . get_current_screen()->id
- ‘handle_network_bulk_actions-‘ . get_current_screen()->id
I think all three of these can be deleted. The latter two at least have been replaced by hooks with interpolated names:
I'm unsure about the $per_page hook.
Change History (3)
Note: See
TracTickets for help on using
tickets.
I think
$per_page
is an old remnant left over from [28347].The correct hook is now edit_{$post_type}_per_page.