Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I use the Twenty Ten theme, customized.

The theme text is: Your email address will not be published.

With the email box below, this gives readers the impression that they must enter an email address, yet I set my settings so one is not required.

I'd like to edit the text to read:

You do not have to leave an email address in order to reply.

Can this be done? If so, how?

Thank you.

share|improve this question

1 Answer

At the bottom of comments.php, replace:

<?php comment_form(); ?>

with:

<?php comment_form(array('comment_notes_before' => 'You do not have to leave an email address in order to reply.')); ?>
share|improve this answer
Thanks, Gavin, but that didn't fix it. Text remains the same. – Avery Aug 9 '11 at 3:40
1  
That certainly works - just tested it out. Maybe ensure that your comments.php is what is being used to display the comments box? – GavinR Aug 9 '11 at 12:53
@:Avery : check your file correctly.@:GavinR :is correct.:) – Ramkumar Sep 29 '11 at 9:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.