add_action('init',function(){if ($_SERVER['REQUEST_METHOD'] !=='POST'){return}if (!isset($_POST['_fluentform'])){return}$ip=$_SERVER['REMOTE_ADDR'];$key='ff_rate_' . md5($ip);$attempts=get_transient($key);if ($attempts===false){set_transient($key,1,10 * MINUTE_IN_SECONDS);return}if ($attempts>=3){wp_die('Zu viele Anfragen. Bitte versuchen Sie es später erneut.')}set_transient($key,$attempts+1,10 * MINUTE_IN_SECONDS)});