woocommerce_tracker_event_recurrence

woocommerce_tracker_event_recurrence

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_tracker_event_recurrence') is found 1 times:

  • /includes/class-wc-install.php line 772
    		 * How frequent to schedule the tracker send event.
    		 *
    		 * @since 2.3.0
    		 */
    		wp_schedule_event( time() + 10, apply_filters( 'woocommerce_tracker_event_recurrence', 'daily' ), 'woocommerce_tracker_send_event' );
    		wp_schedule_event( time() + ( 3 * HOUR_IN_SECONDS ), 'daily', 'woocommerce_cleanup_rate_limits' );
    
    		if ( ! wp_next_scheduled( 'wc_admin_daily' ) ) {
    			wp_schedule_event( time(), 'daily', 'wc_admin_daily' );
    		}
    		// Note: this is potentially redundant when the core package exists.