You appear to be a bot. Output may be restricted
Description
Traces all attached hooks
Usage
bw_trace_all_attached_hooks();
Parameters
Returns
voidSource
File name: oik-bwtrace/includes/bwtrace-actions.phpLines:
1 to 9 of 9
function bw_trace_all_attached_hooks() { global $wp_filter; $count = count( $wp_filter ); $hooks = array(); foreach ( $wp_filter as $tag => $hook_object ) { $hooks[ $tag ] = bw_trace_get_attached_hooks( $tag ); } bw_trace2( $hooks, "All $count hooks" ); }View on GitHub View on Trac