这个comments_form
输出联系人表单的函数有两个操作,可用于完成您想要的内容。
add_action( \'comment_form_before\', \'wwm_comment_form_before\' );
function wwm_comment_form_before() {
//output your opening html here
}
add_action( \'comment_form_after\', \'wwm_comment_form_after\' );
function wwm_comment_form_after() {
//output your closing html here
}
这是一个总结:)