at path:
ROOT
/
wp-content
/
themes
/
kastell
/
comments.php
run:
R
W
Run
assets
DIR
2021-10-11 10:40:44
R
W
Run
framework
DIR
2021-10-11 10:40:44
R
W
Run
includes
DIR
2021-10-11 10:40:44
R
W
Run
languages
DIR
2021-10-11 10:40:44
R
W
Run
vc-templates
DIR
2021-10-11 10:40:44
R
W
Run
woocommerce
DIR
2021-10-11 10:40:44
R
W
Run
404.php
3.69 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
archive.php
717 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
changes.txt
2.64 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
coming-soon-page.php
1.17 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
comments.php
3.51 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
error_log
2.3 KB
2022-07-06 07:44:55
R
W
Run
Delete
Rename
footer.php
54 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
full-width.php
1.07 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
functions.php
27.38 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
header.php
1.39 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
index.php
717 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
page.php
1.06 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
screenshot.png
780.04 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
search.php
558 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
searchform.php
637 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
sidebar.php
184 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
single.php
938 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
slider.php
426 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
style.css
643 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
theme-includes.php
2.07 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
woocommerce.php
919 By
2021-10-11 10:40:44
R
W
Run
Delete
Rename
wpml-config.xml
1.1 KB
2021-10-11 10:40:44
R
W
Run
Delete
Rename
error_log
up
📄
comments.php
Save
<?php if ( post_password_required() ) { return; } if ( comments_open() || get_comments_number() ) { ?> <div class="mkdf-comment-holder clearfix" id="comments"> <?php if ( have_comments() ) { ?> <div class="mkdf-comment-holder-inner"> <div class="mkdf-comments-title"> <h3><?php esc_html_e( 'Comments', 'kastell' ); ?></h3> </div> <div class="mkdf-comments"> <ul class="mkdf-comment-list"> <?php wp_list_comments( array_unique( array_merge( array( 'callback' => 'kastell_mkdf_comment' ), apply_filters( 'kastell_mkdf_comments_callback', array() ) ) ) ); ?> </ul> </div> </div> <?php } ?> <?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) { ?> <p><?php esc_html_e( 'Sorry, the comment form is closed at this time.', 'kastell' ); ?></p> <?php } ?> </div> <?php $mkdf_commenter = wp_get_current_commenter(); $mkdf_req = get_option( 'require_name_email' ); $mkdf_aria_req = ( $mkdf_req ? " aria-required='true'" : '' ); $mkdf_consent = empty( $mkdf_commenter['comment_author_email'] ) ? '' : ' checked="checked"'; $mkdf_args = array( 'id_form' => 'commentform', 'id_submit' => 'submit_comment', 'title_reply' => esc_html__( 'Post a Comment', 'kastell' ), 'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">', 'title_reply_after' => '</h3>', 'title_reply_to' => esc_html__( 'Post a Reply to %s', 'kastell' ), 'cancel_reply_link' => esc_html__( 'cancel reply', 'kastell' ), 'label_submit' => esc_html__( 'Post a Comment', 'kastell' ), 'comment_field' => apply_filters( 'kastell_mkdf_comment_form_textarea_field', '<textarea id="comment" placeholder="' . esc_attr__( 'Your comment', 'kastell' ) . '" name="comment" cols="45" rows="6" aria-required="true"></textarea>' ), 'comment_notes_before' => '', 'comment_notes_after' => '', 'fields' => apply_filters( 'kastell_mkdf_comment_form_default_fields', array( 'author' => '<input id="author" name="author" placeholder="' . esc_attr__( 'Your Name', 'kastell' ) . '" type="text" value="' . esc_attr( $mkdf_commenter['comment_author'] ) . '"' . $mkdf_aria_req . ' />', 'email' => '<input id="email" name="email" placeholder="' . esc_attr__( 'Your Email', 'kastell' ) . '" type="text" value="' . esc_attr( $mkdf_commenter['comment_author_email'] ) . '"' . $mkdf_aria_req . ' />', 'url' => '<input id="url" name="url" placeholder="' . esc_attr__( 'Website', 'kastell' ) . '" type="text" value="' . esc_attr( $mkdf_commenter['comment_author_url'] ) . '" size="30" maxlength="200" />', 'cookies' => '<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $mkdf_consent . ' />' . '<label for="wp-comment-cookies-consent">' . esc_html__( 'Save my name, email, and website in this browser for the next time I comment.', 'kastell' ) . '</label></p>' ) ) ); if ( get_comment_pages_count() > 1 ) { ?> <div class="mkdf-comment-pager"> <p><?php paginate_comments_links(); ?></p> </div> <?php } ?> <?php $mkdf_show_comment_form = apply_filters('kastell_mkdf_show_comment_form_filter', true); if($mkdf_show_comment_form) { ?> <div class="mkdf-comment-form"> <div class="mkdf-comment-form-inner"> <?php comment_form( $mkdf_args ); ?> </div> </div> <?php } ?> <?php } ?>