admin管理员组文章数量:1414893
I want to get the list of all available hooks from active theme / from a specific plugin.
I was tried to get it from global variables $wp_actions & $wp_filter
But, They are showing all registered hooks.
E.g.
global $wp_actions, $wp_filter;
echo '<pre>';
print_r($wp_filter);
E.g. If theme or plugin register the action in after_setup_theme
then it'll list in [after_setup_theme]
key from global $wp_filter
.
I was tried one of the best plugin Simply Show Hooks
. But, It'll also, show all the registered hooks.
Is there any way to get the specific hooks from theme / plugin?
I want to get the list of all available hooks from active theme / from a specific plugin.
I was tried to get it from global variables $wp_actions & $wp_filter
But, They are showing all registered hooks.
E.g.
global $wp_actions, $wp_filter;
echo '<pre>';
print_r($wp_filter);
E.g. If theme or plugin register the action in after_setup_theme
then it'll list in [after_setup_theme]
key from global $wp_filter
.
I was tried one of the best plugin Simply Show Hooks
. But, It'll also, show all the registered hooks.
Is there any way to get the specific hooks from theme / plugin?
Share Improve this question asked Jul 12, 2016 at 10:22 maheshwaghmaremaheshwaghmare 1,07810 silver badges24 bronze badges 3 |2 Answers
Reset to default 2As of 2016-09-25, there is no ideal solution.
The WP-Parser does the job, but you need to set up a special WP site to run it.
WooCommerce's Hook-docs
is something much simpler, and can be easily tweaked.
I just wrote a long comment on the topic here:
https://github/ApiGen/ApiGen/issues/307#issuecomment-249349187
As of 2019-10-16, the ideal solution would be: https://wordpress/plugins/query-monitor/
After installing the plugin, head over to your homepage (or wherever you need to get your list of hooks) and open Query Monitor from the admin bar.
Then, open Hooks & Action:
You will be able to view all the hooks in action, along with their component (e.g. plugin). You will also be able to filter by component.
本文标签: filtersHow to get list of all hooks of current themeplugin
版权声明:本文标题:filters - How to get list of all hooks of current themeplugin? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745154036a2645059.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
wp parser parse .
), which will create a list of hooks (in addition to all functions/classes/etc.). – J.D. Commented Jul 12, 2016 at 13:09