WC_Tracker::get_last_send_time
Get the last time tracking data was sent.
Method of the class: WC_Tracker{}
Hooks from the method
Returns
Int|true|false.
Usage
$result = WC_Tracker::get_last_send_time();
WC_Tracker::get_last_send_time() WC Tracker::get last send time code WC 10.7.0
private static function get_last_send_time() {
/**
* Filter the last time tracking data was sent.
*
* @since 2.3.0
*/
return apply_filters( 'woocommerce_tracker_last_send_time', get_option( 'woocommerce_tracker_last_send', false ) );
}