Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="comments" class="hr-comments__area">
- <?php
- function my_update_comment_field( $fields ){
- $new_fields = array();
- $new_order = array('author','email','url','cookies','comment'); // нужный порядок
- foreach( $new_order as $key ){
- $new_fields[ $key ] = $fields[ $key ];
- unset( $fields[ $key ] );
- }
- if( $fields )
- foreach( $fields as $key => $val ){
- $new_fields[ $key ] = $val;
- }
- return $new_fields;
- }
- add_filter('comment_form_fields','my_update_comment_field');
- comment_form(
- array(
- 'title_reply' => __( 'Напишите что нибудь:', 'hrcode' ),
- )
- ); ?>
- <?php
Advertisement
Add Comment
Please, Sign In to add comment