Modify 'Leave a Reply'
-
Using vanilla WordPress comments it is easy to change the text that says ‘Leave a Reply’. You just paste this into your child theme functions.php:
//* Modify 'Leave a Reply' in comments */ function comment_reform ($arg) { $arg['title_reply'] = __('My customised comment text:'); return $arg; } add_filter('comment_form_defaults','comment_reform');
However when I activate the WpDiscuz plugin, my customization disappears.
What would be the best way to fix this? It might seem like a minor customization but wording is actually very important.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Modify 'Leave a Reply'’ is closed to new replies.