woocommerce_tracker_event_recurrence

woocommerce_tracker_event_recurrence

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_tracker_event_recurrence') is found 1 times:

  • /includes/class-wc-install.php line 837
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    * 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.