Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories
Register::delete_by_id()
Delete the approved directory identitied by the supplied ID.
Метод класса: Register{}
Хуков нет.
Возвращает
true|false
.
Использование
$Register = new Register(); $Register->delete_by_id( $id ): bool;
- $id(int) (обязательный)
- The ID of the rule to be deleted.
Код Register::delete_by_id() Register::delete by id WC 9.5.1
public function delete_by_id( int $id ): bool { global $wpdb; $table = $this->get_table(); return (bool) $wpdb->delete( $table, array( 'url_id' => $id ) ); }