| Server IP : 209.38.54.70 / Your IP : 216.73.216.79 Web Server : LiteSpeed System : Linux srv01 6.1.0-52-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.180-1 (2026-08-03) x86_64 User : mokkerschuur ( 1027) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mokkerschuur/domains/demokkerschuur.be/public_html/wp-content/themes/ashe/ |
Upload File : |
<?php
// if password is required
if ( post_password_required() ) {
return;
}
// if post has comments
if ( have_comments() ) : ?>
<h2 class="comment-title">
<?php comments_number( esc_html__( '0 Comments', 'ashe' ), esc_html__( 'One Comment', 'ashe' ), esc_html__( '% Comments', 'ashe' ) ); ?>
</h2>
<ul class="commentslist" >
<?php wp_list_comments( 'callback=ashe_comments' ); ?>
</ul>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<div class="comments-nav-section">
<p class="fl"></p>
<p class="fr"></p>
<div class="comments-pagination">
<div class="default-previous">
<?php previous_comments_link( '<i class="fa-solid fa-arrow-left-long"></i> '. esc_html__( 'Older Comments', 'ashe' ) ); ?>
</div>
<div class="default-next">
<?php next_comments_link( esc_html__( 'Newer Comments', 'ashe' ) . ' <i class="fa-solid fa-arrow-right-long"></i>' ); ?>
</div>
</div>
</div>
<?php
endif;
// have_comments()
endif;
// Form
comment_form([
'title_reply' => esc_html__( 'Leave a Reply', 'ashe' ),
'comment_field' => '<p class="comment-form-comment"><label for="comment">' . esc_html__( 'Comment', 'ashe' ) . '</label><textarea name="comment" id="comment" cols="45" rows="8" maxlength="65525" required="required" spellcheck="false"></textarea></p>',
'label_submit' => esc_html__( 'Post Comment', 'ashe' )
]);
?>