Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save khikrama/b5ee35aa0ca2152e0c64 to your computer and use it in GitHub Desktop.
Save khikrama/b5ee35aa0ca2152e0c64 to your computer and use it in GitHub Desktop.
function add_new_comment_form_field($fields) {
$fields['phone'] = '<p class="comment-form-phone"><label for="phone">' . __( 'Phone', 'wpsites.net' ) . '</label>' .
'<input id="url" name="url" type="text" placeholder="E.T Phone Home Please" value="' .
esc_attr( $commenter['comment_author_phone'] ) . '" size="30" /></p>';
return $fields;
}
add_filter('comment_form_default_fields','add_new_comment_form_field');
@khikrama
Copy link
Author

khikrama commented Apr 7, 2015

Only add new comment field in wordpress . this function need to added in functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment