Simply Show Hooks
Simply Show Hooks helps theme and plugin developers to quickly see where all the action and filter hooks are on any WordPress page.
The facts
- Rating
- 5★ from 63
- Active installs
- 1k+
- Price
- Free
- Last updated
- 2 Jul 2026
- Added
- Mar 2015
- Requires WP
- 5.0
- Tested up to
- WP 7.0.4
- Requires PHP
- 7.0
- Downloads
- 72,496
Our analysis
AI-assistedSimply Show Hooks is a WordPress plugin designed to assist developers in locating hooks for their add_action() and add_filter() functions. It displays available hooks in-line on the page you are viewing, allowing you to easily copy and paste them into your code.
This plugin is particularly useful for theme and plugin developers who want a quicker way to find WordPress hooks without having to search through the code base or reference materials. It provides a straightforward method to enhance your development workflow.
Best for: This plugin suits WordPress developers looking for an efficient way to find and use hooks.
What it does well
- ✓Displays hooks in-line on the current page
- ✓Simplifies the process of finding hooks
- ✓Free to use from the WordPress.org directory
- ✓Designed specifically for developers
Where it falls short
- •May disrupt the display of your site in some cases
- •Limited information on additional features
Verdict
Simply Show Hooks is a practical tool for developers who need quick access to WordPress hooks. Its straightforward functionality makes it a valuable addition to any developer's toolkit.
From the developer
stuartobrien's own description of Simply Show Hooks, lightly tidied.
Up until now the way theme and plugin developers find where to hook into with their add_action() and add_filter() functions is either to search through the WordPress code base, or find find a reference to the hook in the codex.
What Simply Show Hooks does is give you a simpler way to see these hooks by displaying them in-line on the page that you are on. All that’s left to do then is copy the hook you need, and paste it in to your add_action and add_filter functions like this:
add_action( ‘wp_enqueue_scripts’, ‘my_enqueue_scripts_action’ );
add_filter( ‘the_title’, ‘my_the_title_filter’ );
I made this plugin so I could find WordPress hooks quicker and I use it all the time, so I thought I’d share it and see if it could help others.
Enjoy!
Please note that in odd cases, due to the nature of actions and filters, the plugin may display a hook in place that disrupts the display of your site – in which case we always display the ‘Hide Hooks’ button so you can switch it back off. This won’t disrupt the look of you site to anyone but you so don’t worry.