Skip to main content
Developer utilities is a six-tab page designed for developers who need deep visibility into their WordPress installation. It provides tools ranging from hook inspection and REST API testing to object cache browsing and database prefix changes.
Developer utilities was added in v2.9.0.

Tabs overview

The Hook Explorer reads directly from $wp_filter — WordPress’s global hook registry — and displays every registered add_action and add_filter callback.Each row in the results table shows:
ColumnDescription
HookThe hook name (e.g. init, the_content)
PriorityThe numeric priority the callback was registered with
CallbackThe function or method name
File : LineSource file path and line number resolved via PHP Reflection

Searching hooks

Two filters are available:
  • Search hook name or callback — matches against the hook name and callback function name.
  • Filter by file path — matches against the source file path, useful for isolating hooks from a specific plugin or theme.
Both filters use a 400 ms debounce. Click Search Hooks to run the query. Results are capped at 2,000 entries; a warning badge appears when the cap is reached so you can refine your search.
Leave the search field empty and click Search Hooks to load all hooks registered at the time the page was opened.