Hacked By AnonymousFox
<?php
if ( !empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' == basename( $_SERVER['SCRIPT_FILENAME'] ) )
die ( 'Please do not load this page directly. Thanks!' );
if ( post_password_required() ) {
return;
}
if ( comments_open() ) {
$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
$comment_form_args = array(
'comment_notes_after' => '',
'cancel_reply_link' => __vce( 'cancel_reply_link' ),
'label_submit' => __vce( 'comment_submit' ),
'title_reply' => __vce( 'leave_a_reply' ),
'must_log_in' => '<p class="must-log-in">' . sprintf( __vce( 'must_log_in' ), wp_login_url( apply_filters( 'the_permalink', get_permalink() ) ) ) . '</p>',
'logged_in_as' => '<p class="logged-in-as">' . sprintf( __vce( 'logged_in_as' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
'comment_notes_before' => '',
'comment_notes_after' => '',
'comment_field' => '<p class="comment-form-comment"><label for="comment">' . __vce( 'comment_field' ) .'</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true">' .'</textarea></p>',
'fields' => apply_filters( 'comment_form_default_fields', array(
'author' =>
'<p class="comment-form-author">' .
'<label for="author">' . __vce( 'comment_name' ) . ( $req ? '<span class="required"> *</span>' : '' ) . '</label> ' .
'<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) .
'" size="30"' . $aria_req . ' /></p>',
'email' =>
'<p class="comment-form-email"><label for="email">' . __vce( 'comment_email' ) . ( $req ? '<span class="required"> *</span>' : '' ).'</label> ' .
'<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) .
'" size="30"' . $aria_req . ' /></p>',
'url' =>
'<p class="comment-form-url"><label for="url">' .
__vce( 'comment_website' ) . '</label>' .
'<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) .
'" size="30" /></p>'
) ),
);
}
?>
<?php
if ( comments_open() && ( vce_get_option( 'comments_position' ) == true ) ) :
comment_form( $comment_form_args );
endif;
?>
<?php if ( have_comments() ) : ?>
<div id="comments" class="comments-main">
<div class="comments-holder main-box">
<h3 class="comment-title main-box-title"><?php comments_number( __vce( 'no_comments' ), __vce( 'one_comment' ), __vce( 'comments_number' ) ); ?></h3>
<div class="main-box-inside content-inside">
<ul class="comment-list">
<?php $args = array(
'avatar_size' => 75,
'reply_text' => __vce( 'reply_comment' ),
'format' => 'html5'
);?>
<?php wp_list_comments( $args ); ?>
</ul><!--END comment-list-->
</div>
<?php if ( $vce_paginate_comments = paginate_comments_links( array( 'echo' => false ) ) ): ?>
<div class="navigation">
<?php echo $vce_paginate_comments; ?>
</div>
<?php endif; ?>
</div><!--END comments holder -->
</div>
<?php endif; ?>
<?php
if ( comments_open() && ( vce_get_option( 'comments_position' ) == false ) ) :
comment_form( $comment_form_args );
endif;
?>
Hacked By AnonymousFox1.0, Coded By AnonymousFox