woocommerce_analytics_disable_action_scheduling filter-hookWC 1.0

Usage

add_filter( 'woocommerce_analytics_disable_action_scheduling', 'wp_kama_woocommerce_analytics_disable_action_scheduling_filter' );

/**
 * Function for `woocommerce_analytics_disable_action_scheduling` filter-hook.
 * 
 * @param  $false 
 *
 * @return 
 */
function wp_kama_woocommerce_analytics_disable_action_scheduling_filter( $false ){

	// filter...
	return $false;
}
$false
-

Where the hook is called

In file: /src/Admin/Schedulers/SchedulerTraits.php
woocommerce_analytics_disable_action_scheduling
woocommerce/src/Admin/Schedulers/SchedulerTraits.php 309
apply_filters( 'woocommerce_analytics_disable_action_scheduling', false )

Where the hook is used in WooCommerce

Usage not found.