$w3tc_hook
$w3tc_hook
Appears in: w3-total-cache.2.10.3
Hook Type: action
Displaying hooks found in version: w3-total-cache.2.10.3do_action('$w3tc_hook') is found 1 times:
- /w3-total-cache-api.php line 761
* A do_action alternative used by W3TC when WP core is not available. * * @param string $w3tc_hook Hook/action name. */ function w3tc_do_action( $w3tc_hook ) { global $w3tc_actions; if ( ! empty( $w3tc_actions[ $w3tc_hook ] ) ) { foreach ( $w3tc_actions[ $w3tc_hook ] as $callback ) { call_user_func_array( $callback, array() ); } }