R
R
Ruslan Makarov2015-11-26 22:52:43
PHP
Ruslan Makarov, 2015-11-26 22:52:43

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:
bff6a41129a24dd6b6c54ec80e5c4e48.png
(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

1 answer(s)
I
Ivan Orlov, 2015-11-27
@facepook

$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 question

Ask a Question

731 491 924 answers to any question