I am setting up my word press and want to inform users when comments are moderated.
However the documentation directs me to comments-popup.php (which does not exist and to comments.php which does not exist. However there are two comment.php – one in the wp-admin section and one in wp-inludes but neither display the following that is in the documentation:
If you use popup comments, edit comments-popup.php and if you do not, edit comments.php.
Look for the following code:
<p>
<input name=”submit” type=”submit” tabindex=”5″ value=”<?php _e(“Say it!”); ?>” />
</p>
Change that to the following, adding your own customization:
<p>
Comment moderation is in use. Please do not submit your comment twice — it will appear shortly.
<input name=”submit” type=”submit” tabindex=”5″ value=”<?php _e(“Say it!”); ?>” />
</p>
Where can I find this and set it up?