Vyplňte prosím formulář. Všechny údaje jsou povinné.
[insert_php]
$check_result = apply_filters( ‚gglcptch_verify_recaptcha‘, true, ‚string‘ );
echo ‚check_result:‘ .$check_result;
if ( true === $check_result ) { /* the reCAPTCHA answer is right */
/* do necessary action */
} else { /* the reCAPTCHA answer is wrong or there are some other errors */
echo $check_result; /* display the error message or do other necessary actions in case when the reCAPTCHA test was failed */
}
[/insert_php]