移动wp-comments-post文件防垃圾评论
我之前写的《修改wp-comments-post 防垃圾(spam)评论》,是通过修改wp-comments-post文件名阻止垃圾评论机器人直接读取wp-comments-post文件,实现防垃圾留言。今天再续一个方法:将wp-comments-post文件移动到主题目录中达到阻止垃圾评论。
同样需要修改程序文件:
一、首先打开Wordpress推荐阅读:WordPress上传图片自动添加Alt和图像描述程序根目录的wp-comments-pos.php文件,用:
- require( dirname(__FILE__) . ‘/../../../wp-load.php’ );
替换第16行的:
- require( dirname(__FILE__) . ‘/wp-load.php’ );
之后,将 wp-comments-pos.php 文件移动到当前主题目录中。
二、再打开wordpress程序wp-includes目录的comment-template.php文件,用:
- <form action=“<?php bloginfo(‘template_url’); ?>/wp-comments-post.php” method=“post” id=“<?php echo esc_attr( $args[‘id_form’] ); ?>” class=“comment-form”<?php echo $html5 ? ‘ novalidate’ : ”; ?>>
替换第2046行的:
- <form action=“<?php echo site_url( ‘/wp-comments-post.php’ ); ?>” method=“post” id=“<?php echo esc_attr( $args[‘id_form’] ); ?>” class=“comment-form”<?php echo $html5 ? ‘ novalidate’ : ”; ?>>
三、如果主题使用的非WP标准表单函数,可以略过第二步,用:
- <form action=“<?php bloginfo(‘template_url’); ?>/wp-comments-post.php” method=“post” id=“commentform”>
替换类似:
- <form action=“<?php echo get_option(‘siteurl’); ?>/wp-comments-post.php” method=“post” id=“commentform”>