Apologies if this has already been answered elsewhere here but I did do a search and turned up nothing!
I'm trying to change the text in my POST COMMENT button...to just POST
I know I need to place some code at the bottom of the child theme functions.php file.
The question is what though?
Something along these lines...i think this will change the comment section title rather than the button at the bottom. How do I modify this to chnage the POST COMMENT button?
function comment_reform ($arg) { $arg['title_reply'] = __('Submit a comment:'); return $arg; } add_filter('comment_form_defaults','comment_reform');
Or is there an easier way to do it?
Many thanks
Alex













