// Add custom Theme Functions here add_action('wpcf7_before_send_mail', 'limit_contact_form7_submission'); function limit_contact_form7_submission($contact_form) { $ip_address = $_SERVER['REMOTE_ADDR']; $form_id = $contact_form->id(); $target_form_id = 619; $transient_key = 'cf7_limit_' . $form_id . '_' . $ip_address; if ($form_id == $target_form_id) { if (get_transient($transient_key)) { wp_die(__('Bạn chỉ có thể gửi 1 email trong 1 giờ qua form này. Vui lòng thử lại sau.')); } else { set_transient($transient_key, true, 3600); } } }