You appear to be a bot. Output may be restricted
Description
Add selected hooks to trace the values in the global postNote: Don't trace "the_posts" … it's too early – global $post won't be set
Usage
bw_trace_add_trace_selected_hooks_the_post();
Parameters
Returns
voidSource
File name: oik-bwtrace/includes/bwtrace-actions.phpLines:
1 to 7 of 7
function bw_trace_add_trace_selected_hooks_the_post() { global $bw_action_options; $selected_hooks = bw_array_get( $bw_action_options, "post_hooks", null ); if ( $selected_hooks ) { bw_trace_add_filters( $selected_hooks, "bw_trace_the_post", 0, 9 ); } }View on GitHub View on Trac