खेतों को बदलने के लिए एक कस्टम फ़िल्टर का उपयोग कर Im, लेकिन टिप्पणी के रूप में फ़ील्ड के क्रम को बदलने के लिए कैसे पता लगा सकते हैं ।
वांछित आदेश:
- टिप्पणी क्षेत्र (पहला / शीर्ष)
- नाम
- ईमेल
- वेबसाइट
यह वह कोड है जो मैं वर्तमान में उपयोग कर रहा हूं:
function alter_comment_form_fields($fields){
$fields['comments'] = 'Test';
$fields['author'] = '<p class="comment-form-author">' . '<label for="author">' . __( 'Your name, please' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
'<input id="author" name="author" type="text" placeholder="John Smith" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>';
$fields['email'] = 'next'; //removes email field
//$fields['url'] = ''; //removes website field
return $fields;
}
add_filter('comment_form_default_fields','alter_comment_form_fields');