Не получается вставить запись в таблицу
$wpdb->query($wpdb->prepare("INSERT INTO order ( fio, email, tel, type, message) VALUES ( %s, %s, %s, %s, %s)",
array(
$fio,
$email,
$tel,
$type,
$message
)
));
выдает ошибку
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'order ( fio, email, tel, type, message) VALUES ( 'Имя', 'email@test.com', 'te' at line 1]
INSERT INTO order ( fio, email, tel, type, message) VALUES ( 'Имя', 'email@test.com', 'tel', 'master', 'Сообщение')
Все что мог перепробовал, подскажите, что не так в запросе?