post_author; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : // Display trackbacks differently than normal comments. ?>
  • >
  • comment_approved ) : ?>

    __( 'reply', 'bpt-bootstrap' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    ' . '
    '; $fields['email'] = '
    ' . '
    '; $fields['url'] = ''; return $fields; } add_filter('comment_form_default_fields','modify_comment_form_fields'); endif; // Unset default input field from comment form if ( ! function_exists( 'crunchify_move_comment_form_below' ) ) : function crunchify_move_comment_form_below( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'crunchify_move_comment_form_below' ); endif; if ( ! function_exists( 'wpsites_modify_comment_form_text_area' ) ) : function wpsites_modify_comment_form_text_area($arg) { $arg['comment_field'] = '
    '; return $arg; } add_filter('comment_form_defaults', 'wpsites_modify_comment_form_text_area'); endif; /** * Remove the original comment button */ if ( ! function_exists( 'comment_form_submit_button' ) ) : add_filter('comment_form_submit_button', function($button){return $button ='';}); function comment_form_submit_button($button) { $button = '
    '; return $button; } add_filter('comment_form_submit_button', 'comment_form_submit_button'); endif;