comment_type=='pingback' || $comment->comment_type=='trackback' ) { ?>
  • >
    ', '
    ' ); ?>
  • >
    ', '' ); ?> comment_approved ) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    '; $fields['email'] = '
    '; $fields['url'] = '
    '; return $fields; } } add_filter( 'comment_form_default_fields', 'vs_comment_form_default_fields' ); if ( ! function_exists( 'vs_comment_form_field_comment' ) ) { /** * Custom fields comment */ function vs_comment_form_field_comment( $comment_field ) { $req = get_option( 'require_name_email' ); $comment_field = '
    '; return $comment_field; } } add_filter( 'comment_form_field_comment', 'vs_comment_form_field_comment' ); if ( ! function_exists( 'vs_move_comment_form_field' ) ) { /** * Move comment form field */ function vs_move_comment_form_field( $field ) { $field_cookies = $field['cookies']; $field_comment = $field['comment']; unset( $field['cookies'] ); unset( $field['comment'] ); $field['comment'] = $field_comment; $field['cookies'] = $field_cookies; return $field; } } add_filter( 'comment_form_fields', 'vs_move_comment_form_field' );