'; // Is a password required to make a comment? if ( post_password_required() ) { echo '

' . __( 'Password Protected', THEMENAME ) . '

'; echo '
'; echo '

' . __( 'This post is password protected. Enter the password to view any comments.', THEMENAME ) . '

'; echo '
'; return; } // Do we have comments? if ( have_comments() ) { echo '

'; printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), THEMENAME ), number_format_i18n( get_comments_number() ), '' . get_the_title() . '' ); echo '

'; echo '
'; echo '
    '; wp_list_comments( array( 'callback' => 'arixWP_comment' ) ); echo '
'; if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { echo ''; } echo '
'; echo '
 
'; } else { if ( !comments_open() ) { echo '

' . __( 'Comments are closed', THEMENAME ) . '

'; echo '
'; echo '

' . __( 'Sorry commenting has been closed for this topic.', THEMENAME ) . '

'; echo '
'; } else { echo '

' . __( 'No Comments', THEMENAME ) . '

'; echo '
'; echo '

' . __( 'There aren\'t any comments yet. Be the first!', THEMENAME ) . '

'; echo '
'; } } echo ''; echo ARIXWP_COMMENT_FOOTER; if ( comments_open() ) { echo ARIXWP_COMMENT_HEADER; // Comment form $usedefault = false; if ( $usedefault == true ) comment_form(); else arixWP_commentForm(); echo ARIXWP_COMMENT_FOOTER; } ?>