woocommerce_log_clear action-hookWC 1.0

Usage

add_action( 'woocommerce_log_clear', 'wp_kama_woocommerce_log_clear_action' );

/**
 * Function for `woocommerce_log_clear` action-hook.
 * 
 * @param  $handle 
 *
 * @return void
 */
function wp_kama_woocommerce_log_clear_action( $handle ){

	// action...
}
$handle
-

Where the hook is called

WC_Log_Handler_File::clear()
woocommerce_log_clear
woocommerce/includes/log-handlers/class-wc-log-handler-file.php 241
do_action( 'woocommerce_log_clear', $handle );

Where the hook is used in WooCommerce

Usage not found.