comment_moderation states setting on comment form
-
wordpress 1.2.1
I had a problem with users posting multiple comments when they saw that the comments
did not appear on the web page. I think the comments page should note that the comment
must be approved prior to being displayed on the webpage if “moderation” is enabled.wp-comments.php line 72 of 87
original:
<label for=”comment”><?php _e(“Your Comment”); ?></label>modification:
<label for=”comment”><?php _e(“Your Comment”); ?></label> <?php if (get_settings(‘comment_moderation’)) _e(‘
( Your comment will appear after approval by a moderator ) ‘); ?>
The topic ‘comment_moderation states setting on comment form’ is closed to new replies.