简体   繁体   中英

Create custom reply form in wordpress

i want to change reply form with our custom form field on clicking reply in comment section. By default reply show the same comment form . How I change the reply form . Any Help?

Thanks in advance

Probably, this will facilitate with what you want to achieve:

Paste the following code into the functions.php file of your WordPress theme, after making the changes described below the code:

//change text to leave a reply on comment form
function isa_comment_reform ($arg) {
$arg['title_reply'] = __('Leave a Comment:');
return $arg;
}

add_filter('comment_form_defaults','isa_comment_reform');

Source

Hope this will resolve your issue.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM