'
', 'email' => '
', 'website' => '
', ); /** * Comments Field Default */ function businessexpo_comment_fields( $businessexpo_fields ) { return $businessexpo_fields; } add_filter( 'comment_form_default_fields', 'businessexpo_comment_fields' ); $defaults = array( 'fields' => apply_filters( 'businessexpo_comment_form_default_fields', $businessexpo_fields ), 'comment_field' => '
', 'logged_in_as' => '

' . esc_html__( 'Logged in as', 'businessexpo' ) . ' ' . '' . esc_html( $user_identity ) . '' . '. ' . '' . esc_html__( 'Logout', 'businessexpo' ) . '' . '

', 'id_submit' => 'submit', 'label_submit' => esc_html__( 'Post Comment', 'businessexpo' ), 'comment_notes_after' => '', 'title_reply' => '
' . esc_html__( 'Please Post Your Comments & Reviews', 'businessexpo' ) . '
', 'id_form' => 'action', ); comment_form( $defaults ); ?>