WC_Background_Process::delete_all_batches()publicWC 1.0

Delete all batches.

Метод класса: WC_Background_Process{}

Хуков нет.

Возвращает

WC_Background_Process.

Использование

$WC_Background_Process = new WC_Background_Process();
$WC_Background_Process->delete_all_batches();

Код WC_Background_Process::delete_all_batches() WC 8.7.0

public function delete_all_batches() {
	global $wpdb;

	$table  = $wpdb->options;
	$column = 'option_name';

	if ( is_multisite() ) {
		$table  = $wpdb->sitemeta;
		$column = 'meta_key';
	}

	$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';

	$wpdb->query( $wpdb->prepare( "DELETE FROM {$table} WHERE {$column} LIKE %s", $key ) ); // @codingStandardsIgnoreLine.

	return $this;
}