' . esc_html(get_the_title()) . '' ); } else { printf( /* translators: 1: comment count number, 2: title. */ esc_html(_nx('%1$s comment', '%1$s comments', $olivewp_comment_box_count, 'comments title', 'olivewp' )), esc_html(number_format_i18n($olivewp_comment_box_count)), '' . esc_html(get_the_title()) . '' ); } ?>

'; $fields = array( 'author' => '

', 'email' => '

', 'url' => '

' ); function olivewp_fields($fields) { return $fields; } add_filter('comment_form_default_fields','olivewp_fields'); $defaults = array( 'fields' => apply_filters( 'comment_form_default_fields', $fields ), 'comment_field' => '

', 'logged_in_as' => '

' . esc_html__("Logged in as",'olivewp' ).' '.''.$user_identity.''. ''.' '.esc_html__("Log out",'olivewp' ).'?' . '

', 'id_submit' => 'submit', 'label_submit' => esc_html__('Post Comment','olivewp' ), 'comment_notes_after' => '', 'comment_notes_before' => '', 'title_reply' => esc_html__('Leave a Reply', 'olivewp' ), 'id_form' => 'commentform' ); ob_start(); comment_form($defaults); echo '';?>