Answer the question
In order to leave comments, you need to log in
How to change WordPress comment form fields?
Good!
Please tell me how to swap the comment fields in the WordPress comment form without a plugin.
You need it like this:
(text input field, put above the name and soap fields)
Thanks in advance!
Answer the question
In order to leave comments, you need to log in
$fields = array(
'comment' => '<textarea name="comment"></textarea>',
'author' => '<input type="text" name="author" placeholder="Введите Ваше имя">',
'email' => '<input type="email" name="email" placeholder="Введите Ваш Email (необязательно)">',
'url' => '<input type="text" name="url" placeholder="Введите Ваш телефон (необязательно)">'
);
comment_form(array(
'comment_field' => '',
'fields' => apply_filters( 'comment_form_default_fields', $fields )
));
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question