一个不错的WordPress评论算术题验证码插件
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-19 14:22:42 浏览: 评论:0
算术题验证码我们见过最多的就是如1+3等于多少,下面我来给各位介绍在WordPress评论中加个一个算术题验证码功能,各位可参考消息.
下面是插件代码,自行取走:
- /*
- Plugin Name: 简单算术题评论验证码插件
- Description: 提交评论之前必须写出简单的算术题答案
- Version: 1.0
- Author: 否子戈
- */
- if(!class_exists('comment_capatcha')) {
- class comment_capatcha {
- function __construct() {
- add_action('comment_form', array(& $this, 'print_capatcha'));
- add_filter('preprocess_comment', array(& $this, 'preprocess_comment'));
- }
- function print_capatcha() {
- if(!is_user_logged_in()) {
- global $post;
- session_start();
- $rand_1 = mt_rand(1,20);
- $rand_2 = mt_rand(1,20);
- $_SESSION['capatcha_'.$post->ID] = $rand_1 + $rand_2;
- $str = '<div id="capatcha-area"><label>';
- $str .= "{$rand_1} + {$rand_2} = ".'<input type="text" name="capatcha" id="capatcha" />';
- $str .= '智商合格才能评论 *';
- $str .= '</label></div>';
- echo $str;-
- }
- }
- function preprocess_comment($commentdata) {
- if(!is_user_logged_in()) {
- session_start();
- $post_id = isset($_POST['comment_post_ID']) ? $_POST['comment_post_ID'] : 0;
- if(!$post_id){
- wp_die('警告:数据来源非法!!');
- }
- $capatcha = $_SESSION['capatcha_'.$post_id];
- if($capatcha != $_POST['capatcha']){
- wp_die( __('警告:你智商有问题,不允许评论,请返回重新计算。') );
- }
- unset($_SESSION['capatcha_'.$post_id]);
- }
- return $commentdata;
- }
- }
- }
- if( !isset($comment_capatcha) ) {
- $comment_capatcha =& new comment_capatcha();
- }
将上面的代码保存在comment_capatcha.php中,上传到wordpress的wp-content/plugins/目录下,到后台启动该插件就可以了.
不过,如果你是通过阅读如何自己设计wordpress评论列表及评论框之后自己设计的自己的评论框,那么一定要注意do_action('comment_form', $post->ID);的位置,因为验证算术题会在它的位置打印出来.
Tags: WordPress评论 验证码插件
相关文章
- ·WordPress评论禁止指定内容全英文内容具体方法(2014-03-18)
- ·wordpress评论中的链接自动加上nofollow(2014-03-19)
- ·允许在wordpress评论中使用更多的HTML标签(2014-03-19)
- ·wordpress评论开启与禁用HTML标签方法(2014-03-19)
- ·给WordPress评论表单增加字段的方法(2014-06-20)
- ·wordpress评论头像怎么设置图片描述(2014-06-21)
- ·wordpress评论标签comments_template(2014-07-23)
- ·wordpress显示评论者地理位置与浏览器类型(2014-07-25)
- ·wordpress添加阅读和评论排行榜功能例子(2014-10-17)
- ·WordPress评论者头像缓存到本地的方法详解(2015-03-23)
- ·wordpress首页评论头像不显示怎么办?(2015-06-24)
- ·WORDPRESS赚钱方法之评论站(2015-09-24)
- ·WordPress中实现每篇文章只允许用户评论一次(2015-10-15)
- ·WordPress显示评论者IP、归属地及运营商信息解决方法(2015-10-15)
- ·WordPress后台显示未回复的评论设置(2015-10-15)
- ·给wordpress评论处添加表情及工具(2015-10-15)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)