wp-geetest

🎨基于极验 3.0,在 WordPress 的登录和评论时加入极验验证。

APACHE-2.0 License

Stars
7
Committers
2

  1. config.php

  1. layer``jquery``CDN
  2. css

get``post

// 
function add_geetest_login_val() {
    if (!empty($_POST)){
        // 
    }
}
add_action('login_form_login','add_geetest_login_val');

// 
function add_geetest_comment_val($incoming_comment) {
		if (!empty($_POST)){
        // 
    }
		// 
		return $incoming_comment;
}
add_filter('preprocess_comment', 'add_geetest_comment_val');
Related Projects