Changeset 459614
- Timestamp:
- 11/05/2011 09:00:39 AM (14 years ago)
- Location:
- wp-comment-access/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-comment-access.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-comment-access/trunk/readme.txt
r455920 r459614 4 4 Requires at least: 3.2 5 5 Tested up to: 3.2 6 Stable tag: 0.2.26 Stable tag: trunk 7 7 8 8 == Description == 9 9 This plugin is used to specify the IP written comments, to reduce comment spam 10 issues, can be used for SEO, managing multiple sites. 10 issues, can be used for SEO, managing multiple sites.Please commments.php added before "do_action ('comment_form_before')". 11 11 == Installation == 12 12 * PHP >= 5.2 needed. … … 17 17 = 1.0 = 18 18 * First release. 19 19 = 1.1 = 20 * Modify some sidebar BUG -
wp-comment-access/trunk/wp-comment-access.php
r455920 r459614 4 4 Plugin Name: WP_Comment_Access 5 5 Plugin URI: http://blog.mcshell.org/ 6 Description: This plugin is used to specify the IP written comments, to reduce comment spam issues, can be used for SEO, managing multiple sites. By TCreate7 Version: 1. 06 Description: This plugin is used to specify the IP written comments, to reduce comment spam issues, can be used for SEO, managing multiple sites.Please commments.php added before "do_action ('comment_form_before')".By TCreate 7 Version: 1.1 8 8 Author: McShell 9 9 Author URI: http://blog.mcshell.org/ … … 84 84 function cfa_no_comment_form () { 85 85 echo "You do not have permission to comment on"; 86 exit; 86 global $post; 87 $post->comment_status='closed'; 88 87 89 } 88 90
Note: See TracChangeset
for help on using the changeset viewer.