به رایــــــــا وردپـــــرس خوش اومدین
🔍
فیلتر نتایج جستجو :
خانهپایگاه دانشبدون پلاگین، به فرم‌ های وردپرس کپچا اضافه کن
https://rayawp.ir/?p=18401

بدون پلاگین، به فرم‌ های وردپرس کپچا اضافه کن

حتما توی سایت‌های مختلف دیدی که ازت می‌خوان یه سری اعداد یا کلمات رو تایپ کنی تا ربات‌ها نتونن وارد سایت بشن، درسته؟ این دقیقاً همون کپچا هست! یه جور فیلتر امنیتی که به کمکش

حتما توی سایت‌های مختلف دیدی که ازت می‌خوان یه سری اعداد یا کلمات رو تایپ کنی تا ربات‌ها نتونن وارد سایت بشن، درسته؟ این دقیقاً همون کپچا هست! یه جور فیلتر امنیتی که به کمکش ربات‌ها رو از فرستادن اسپم و خرابکاری دور می‌کنیم و اجازه میدیم فقط آدم‌ها بتونن فرم‌ها رو پر کنن. 🛡️

حالا شاید این سوال برات پیش بیاد که چرا باید این رو به فرم‌های وردپرس خودت اضافه کنی؟ 🤔 خب، جواب خیلی ساده‌س! اضافه کردن کپچا می‌تونه جلوی اسپم‌، ثبت‌نام‌های تقلبی و استفاده از فرم‌های سایتت توسط ربات‌ها رو بگیره و باعث بشه سایتت امن‌تر و حرفه‌ای‌تر بشه. و احتمالاً فکر می‌کنی که برای این کار باید حتما یه افزونه نصب کنی، درست می‌گم؟ 😅 ولی اصلاً نیازی به این کار نیست! با چند خط کد ساده می‌تونی به راحتی کپچا رو به فرم‌های ورود، ثبت‌نام و بازیابی رمز عبور وردپرس و حتی فرم کامنت سایتت اضافه کنی. تو این آموزش هم قراره همین مراحل رو قدم به قدم با هم مرور کنیم و یه روش ساده و بدون افزونه رو یاد بگیریم. 🤓

کپچا چیست؟ 🤖

کپچا (به انگلیسی: CAPTCHA) مخفف عبارت Completely Automated Public Turing test to tell Computers and Humans Apart است که به معنی “آزمون تورینگ عمومی خودکار برای تفکیک کامپیوترها و انسان‌ها” می‌باشد. شاید این تعریف کمی پیچیده به نظر بیاد، اما اگه بخوام ساده بگم، کپچا یه سیستم امنیتیه که کمک می‌کنه بفهمیم کاربر یه آدم واقعی هست یا یه ربات! 🛡️

کپچا معمولاً از کاربر میخاد که یه کاری انجام بده که برای ربات‌ها حل کردنش سخت باشه. این کار می‌تونه وارد کردن اعداد یا حروف در هم پیچیده، یا حل یه معادله ساده ریاضی باشه. هدف اصلی کپچا اینه که جلوی ربات‌ها و اسپم‌ها رو بگیره و فقط به آدم‌ها اجازه بده که فرم‌ها رو پر کنن، ثبت‌نام کنن یا نظراتشون رو ارسال کنن. 🔒

✨ فیلم و سریال های جدید رو از اینجا دانلود کن✨ کلیک کن AD

اضافه کردن کپچا به فرم های وردپرس 😊

مرحله اول: آماده‌سازی کدها 📝

اول از همه، باید یه کد خیلی ساده اضافه کنیم که بتونیم یه سشن برای ذخیره نتیجه کپچا بسازیم. برای این کار باید از تابع add_action استفاده کنیم. این کد رو به فایل functions.php قالب وردپرس‌ت اضافه کن:

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

این کار سشن رو فعال می‌کنه که برای ذخیره‌سازی نتیجه کپچا بهش نیاز داریم.

شاید سوال پیش بیاد: سشن چیه؟ سشن (Session) یه روش برای ذخیره‌سازی اطلاعات به صورت موقت بر روی سرور هست. یعنی وقتی کاربری وارد سایت میشه، اطلاعاتی مثل وضعیت ورود، تنظیمات و… توی سشن ذخیره میشه و تا وقتی که کاربر توی سایت هست، می‌تونه از اون اطلاعات استفاده کنه. این اطلاعات معمولاً روی سرور ذخیره می‌شن و وقتی کاربر سایت رو ترک می‌کنه یا مرورگرش رو می‌بنده، سشن تمام میشه. 👨‍💻

مرحله دوم: اضافه کردن کپچا به فرم‌ها 🔢

حالا وقتشه که کپچا یا همون کد امنیتی رو به فرم‌های وردپرس اضافه کنیم. کپچای مورد نظر ما یه کپچای حاصل جمع دو عدد هست. یعنی دو عدد تصادفی انتخاب می‌کنیم و از کاربر می‌خواهیم که نتیجه‌ی جمع اون‌ها رو وارد کنه. برای این کار، کد زیر رو به فایل functions.php قالب وردپرس‌ت اضافه کن:

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms'); 

function add_captcha_to_forms() {
    $num1 = rand(1, 9);
    $num2 = rand(1, 99);
    $_SESSION['captcha_result'] = $num1 + $num2;

    echo '<p class="captcha">
        <label for="captcha"> حاصل جمع ' . $num1 . ' + ' . $num2 . ' را وارد کنید</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

با این کد، یه فیلد کپچا به فرم‌های ورود، ثبت‌نام و فراموشی رمز و نظرات وردپرس اضافه میشه. حالا کاربر باید جواب ریاضی رو وارد کنه تا بتونه فرم رو ارسال کنه. 💡

مرحله سوم: تایید جواب کپچا ✔️

بعدش باید بررسی کنیم که کاربر درست جواب داده یا نه. اینجا کدهایی داریم که نتیجه‌ای که کاربر وارد کرده رو با نتیجه‌ای که ما ذخیره کردیم مقایسه می‌کنه. اگه اشتباه وارد کرده باشه، یه پیغام خطا نشون میدیم که باید دوباره تلاش کنه. این کدها رو هم به فایل functions.php اضافه کن:

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');
function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        return new WP_Error('captcha_error', 'خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
    return $user;
}
function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
}
function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
}
function verify_captcha_comment() {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        wp_die('خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

مرحله چهارم: پاک کردن نتایج کپچا بعد از ورود، ثبت‌ نام یا ارسال کامنت 🔄

آخرین مرحله اینه که بعد از این که کاربر موفق به ورود، ثبت‌نام یا بازیابی رمز عبور شد، نتیجه کپچا رو پاک کنیم تا دیگه استفاده نشه. برای این کار از این کد استفاده می‌کنیم:

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);
function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_result']);
}
function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_result']);
}
function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_result']);
}
function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_result']);
}

با این کدها، بعد از ورود، ثبت‌نام یا تغییر رمز عبور، نتیجه کپچا پاک میشه و دیگه مشکلی برای استفاده در دفعات بعدی پیش نمیاد. 😎

کد نهایی حاصلجمع دو عدد رندوم به صورت یکجا:

کافیه کد زیر رو درون فایل function.php قالبت قرار بدی تا این کپچا به فرم های سایتت اضافه بشه 🙂

// CAPTCHA sum by RayaWp.ir

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms');

function add_captcha_to_forms() {
    $num1 = rand(1, 9);  
    $num2 = rand(1, 99); 
    $_SESSION['captcha_result'] = $num1 + $num2; 

    echo '<p class="captcha">
        <label for="captcha"> حاصل جمع ' . $num1 . ' + ' . $num2 . ' را وارد کنید</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');

function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        return new WP_Error('captcha_error', 'خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
    return $user;
}

function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_comment() {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        wp_die('خطا: حاصل جمع اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);

function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_result']);
}
کپچای حاصلجمع دو عدد رندوم

اگه می‌خوای استایل و دیزاین جذاب واسه صفحه لاگین پیش‌فرض وردپرس داشته باشی، کلیک کن! 😎✨ با این روش می‌تونی صفحه ورود سایتت رو زیبا و خاص کنی و تجربه کاربری بهتری رو به بازدیدکننده‌ها بدی. 👌🖥️

توجه! 🚨 علاوه بر کپچای حاصل‌جمع، چندین مدل کپچای ریاضی دیگه هم برات آماده کردم. 🤓 فقط کافیه هر کدوم رو که دوست داری، توی فایل functions.php قالب سایتت بچسبونی! 😉

کپچای حاصلضرب دو عدد رندوم❌

// CAPTCHA multiplication by RayaWp.ir

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms');

function add_captcha_to_forms() {
    $num1 = rand(1, 9);  
    $num2 = rand(1, 9);  // تغییر این عدد برای ضرب
    $_SESSION['captcha_result'] = $num1 * $num2;  // تغییر عملیات به ضرب

    echo '<p class="captcha">
        <label for="captcha"> حاصل ضرب ' . $num1 . ' * ' . $num2 . ' را وارد کنید</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');

function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        return new WP_Error('captcha_error', 'خطا: حاصل ضرب اشتباه است. لطفا دوباره تلاش کنید.');
    }
    return $user;
}

function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل ضرب اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل ضرب اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_comment() {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        wp_die('خطا: حاصل ضرب اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);

function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_result']);
}
کپچای حاصلضرب دو عدد رندوم❌

کپچای تفریق دو عدد رندوم ➖

// CAPTCHA subtraction by RayaWp.ir

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms');

function add_captcha_to_forms() {
    $num1 = rand(1, 10); 
    $num2 = rand(10, 99);  
    $_SESSION['captcha_result'] = $num1 - $num2;  

    echo '<p class="captcha">
        <label for="captcha"> حاصل تفریق ' . $num1 . ' - ' . $num2 . ' را وارد کنید</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');

function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        return new WP_Error('captcha_error', 'خطا: حاصل تفریق اشتباه است. لطفا دوباره تلاش کنید.');
    }
    return $user;
}

function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل تفریق اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل تفریق اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_comment() {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        wp_die('خطا: حاصل تفریق اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);

function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_result']);
}
کپچای تفریق دو عدد رندوم ➖

کپچای تقسیم دو عدد رندوم ➗

// CAPTCHA division by RayaWp.ir (correct division)

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms');

function add_captcha_to_forms() {
    $num2 = rand(1, 9); 
    $num1 = $num2 * rand(1, 9);  

    $_SESSION['captcha_result'] = $num1 / $num2;  

    echo '<p class="captcha">
        <label for="captcha"> حاصل تقسیم عدد ' . $num1 . ' بر عدد ' . $num2 . ' را وارد کنید</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');

function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        return new WP_Error('captcha_error', 'خطا: حاصل تقسیم اشتباه است. لطفا دوباره تلاش کنید.');
    }
    return $user;
}

function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل تقسیم اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: حاصل تقسیم اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_comment() {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        wp_die('خطا: حاصل تقسیم اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);

function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_result']);
}
کپچای تقسیم دو عدد رندوم ➗

کپچای پیشرفته تر عملیات ترکیبی ضرب و جمع➗➕

اگر بخواهیم کپچای سایت رو یکم پیشرفته‌تر کنیم، می‌تونیم از عملیات ترکیبی ریاضی استفاده کنیم. یعنی از کاربر می‌خواهیم ابتدا حاصل جمع دو عدد رو حساب کنه، بعد جواب رو در یک عدد تصادفی ضرب کنه و نتیجه نهایی رو توی فیلد مربوطه وارد کنه. 😎

// CAPTCHA combined operations by RayaWp.ir (advanced version with mixed operations)

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms');

function add_captcha_to_forms() {
    $num1 = rand(1, 10);
    $num2 = rand(1, 10);
    $num3 = rand(1, 10);
    
    $operation1 = rand(1, 2); 
    $operation2 = rand(1, 2); 

    if ($operation1 == 1) {
        $_SESSION['captcha_result_1'] = $num1 + $num2;
        $operation1_symbol = '+';
        $operation_text_1 = 'جمع';
    } else {
        $_SESSION['captcha_result_1'] = $num1 * $num2;
        $operation1_symbol = '*';
        $operation_text_1 = 'ضرب';
    }

    // اعمال عملیات دوم
    if ($operation2 == 1) {
        $_SESSION['captcha_result'] = $_SESSION['captcha_result_1'] + $num3;
        $operation2_symbol = '+';
        $operation_text_2 = 'جمع';
    } else {
        $_SESSION['captcha_result'] = $_SESSION['captcha_result_1'] * $num3;
        $operation2_symbol = '*';
        $operation_text_2 = 'ضرب';
    }

    echo '<p class="captcha">
        <label for="captcha"> حاصل ' . '(' . $num1 . ' ' . $operation1_symbol . ' ' . $num2 . ') ' . $operation2_symbol . ' ' . $num3 . ' را وارد کنید (' . $operation_text_1 . ' و ' . $operation_text_2 . ')</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');

function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        return new WP_Error('captcha_error', 'خطا: جواب کپچا اشتباه است. لطفا دوباره تلاش کنید.');
    }
    return $user;
}

function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: جواب کپچا اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        $errors->add('captcha_error', 'خطا: جواب کپچا اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

function verify_captcha_comment() {
    if (isset($_POST['captcha']) && intval($_POST['captcha']) !== $_SESSION['captcha_result']) {
        wp_die('خطا: جواب کپچا اشتباه است. لطفا دوباره تلاش کنید.');
    }
}

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);

function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_result']);
}

function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_result']);
}
کپچای پیشرفته تر عملیات ترکیبی ضرب و جمع➗➕

کپچای پرسش سوال

تو این کپچا از کاربر خواسته میشه که پایتخت ایران کجاست و فقط در صورتی که جواب درست (تهران) رو وارد کنه، تایید میشه. 😉

// CAPTCHA پرسش از پایتخت ایران by RayaWp.ir

add_action('init', 'start_session', 1);
function start_session() {
    if (!session_id()) {
        session_start();
    }
}

add_action('login_form', 'add_captcha_to_forms');
add_action('register_form', 'add_captcha_to_forms');
add_action('lostpassword_form', 'add_captcha_to_forms');
add_action('comment_form', 'add_captcha_to_forms');

function add_captcha_to_forms() {
    $_SESSION['captcha_answer'] = 'تهران';

    echo '<p class="captcha">
        <label for="captcha">پایتخت ایران کجاست؟</label>
        <input type="text" id="captcha" name="captcha" size="25" required />
    </p>';
}

add_filter('authenticate', 'verify_captcha_login', 30, 3);
add_action('register_post', 'verify_captcha_register', 10, 3);
add_action('lostpassword_post', 'verify_captcha_lostpassword', 10, 3);
add_action('pre_comment_on_post', 'verify_captcha_comment');

function verify_captcha_login($user, $username, $password) {
    if (isset($_POST['captcha']) && strtolower(trim($_POST['captcha'])) !== strtolower($_SESSION['captcha_answer'])) {
        return new WP_Error('captcha_error', 'پاسخ اشتباه است. لطفاً دوباره تلاش کنید.');
    }
    return $user;
}

function verify_captcha_register($username, $email, $errors) {
    if (isset($_POST['captcha']) && strtolower(trim($_POST['captcha'])) !== strtolower($_SESSION['captcha_answer'])) {
        $errors->add('captcha_error', 'پاسخ اشتباه است. لطفاً دوباره تلاش کنید.');
    }
}

function verify_captcha_lostpassword($errors) {
    if (isset($_POST['captcha']) && strtolower(trim($_POST['captcha'])) !== strtolower($_SESSION['captcha_answer'])) {
        $errors->add('captcha_error', 'پاسخ اشتباه است. لطفاً دوباره تلاش کنید.');
    }
}

function verify_captcha_comment() {
    if (isset($_POST['captcha']) && strtolower(trim($_POST['captcha'])) !== strtolower($_SESSION['captcha_answer'])) {
        wp_die('پاسخ اشتباه است. لطفاً دوباره تلاش کنید.');
    }
}

add_action('wp_login', 'clear_captcha_after_login', 10, 2);
add_action('user_register', 'clear_captcha_after_register', 10, 1);
add_action('password_reset', 'clear_captcha_after_lostpassword', 10, 1);
add_action('wp_insert_comment', 'clear_captcha_after_comment', 10, 2);

function clear_captcha_after_login($user_login, $user) {
    unset($_SESSION['captcha_answer']);
}

function clear_captcha_after_register($user_id) {
    unset($_SESSION['captcha_answer']);
}

function clear_captcha_after_lostpassword($user) {
    unset($_SESSION['captcha_answer']);
}

function clear_captcha_after_comment($comment_id, $comment) {
    unset($_SESSION['captcha_answer']);
}
کپچای پرسش سوال

نتیجه‌ گیری 🎉

خب، دیگه تموم شد! حالا بدون نیاز به افزونه، با این چند خط کد ساده می‌تونی امنیت سایت وردپرست رو بالاتر ببری و از ورود ربات‌ها جلوگیری کنی. حالا که کپچا رو به فرم‌های وردپرس اضافه کردی، می‌تونی تا حد زیادی مطمئن بشی که فقط آدم‌های واقعی می‌تونن وارد سایت بشن و اسپم‌ها رو فیلتر می‌کنی. 💪

مرسی که تا پایان این پست آموزشی با نگاه قشنگت منو همراهی کردی اگه سوال یا پرسشی داشتی حتما قسمت دیدگاه ها بپرس تا به جواب برسی 🙂

5/5 - (3 امتیاز)

اگه از مطالب سایت خوشت اومده و کارت رو راه انداخته، می‌تونی با یه حمایت کوچیک کمک کنی بهتر و قوی‌ترش کنیم! هر مبلغی که کمک کنی، مستقیم میره برای توسعه سایت و تولید محتوا و آموزش های جذاب‌ تر. 🌟

برای مشاهده و ارســال دیـــدگاه وارد حساب کاربری خود شده یا ثبت نام کنید.

ارسال دیدگاه

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *

نظرات تایید شده: 0 نظرات در انتظار تایید: 0

📖 آنچه خواهید خواند

    🔴 21 نفر در حال مطالعه این مقاله
    Picture of SaeID
    SaeID

    عاشق یادگیری وردپرس و کلن طراحی سایت هستم. سعی میکنم دانش و تجربیات خودمو در رایا وردپرس باهاتون به اشتراک بزارم :)

    مقالات بیشتر
    بستن