at path:
ROOT
/
wp-content
/
themes
/
kadu
/
comments.php
run:
R
W
Run
assets
DIR
2025-12-13 10:14:07
R
W
Run
inc
DIR
2025-12-13 10:17:32
R
W
Run
languages
DIR
2025-12-13 10:17:32
R
W
Run
template-parts
DIR
2025-12-13 10:17:32
R
W
Run
tutor
DIR
2025-12-13 10:17:32
R
W
Run
woocommerce
DIR
2025-12-13 10:17:32
R
W
Run
404.php
1.4 KB
2024-06-13 09:29:28
R
W
Run
Delete
Rename
archive.php
724 By
2024-06-14 09:04:02
R
W
Run
Delete
Rename
comments.php
2.73 KB
2024-06-23 08:52:00
R
W
Run
Delete
Rename
footer.php
715 By
2024-05-28 06:44:46
R
W
Run
Delete
Rename
functions.php
9.37 KB
2024-06-26 08:39:36
R
W
Run
Delete
Rename
header.php
1.2 KB
2024-06-25 09:00:36
R
W
Run
Delete
Rename
index.php
968 By
2024-06-14 09:03:36
R
W
Run
Delete
Rename
page.php
689 By
2024-06-13 09:31:24
R
W
Run
Delete
Rename
screenshot.png
163.35 KB
2024-06-26 05:13:24
R
W
Run
Delete
Rename
search.php
738 By
2024-06-14 09:04:28
R
W
Run
Delete
Rename
sidebar.php
396 By
2024-06-23 04:35:42
R
W
Run
Delete
Rename
single.php
641 By
2024-06-23 04:35:04
R
W
Run
Delete
Rename
style.css
410 By
2024-05-28 06:56:06
R
W
Run
Delete
Rename
error_log
up
📄
comments.php
Save
<?php /** * The template for displaying comments * * This is the template that displays the area of the page that contains both the current comments * and the comment form. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package kadu */ /* * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ if (post_password_required()) { return; } ?> <div id="comments" class="blog-comments-wrap"> <?php // You can start editing here -- including this comment! if (have_comments()): ?> <div class="post-comments"> <h5 class="comments-title wow" data-splitting=""> <?php $kadu_comment_count = get_comments_number(); if ('1' === $kadu_comment_count) { printf( /* translators: 1: title. */ esc_html__('1 Comment', 'kadu'), '<span>' . wp_kses_post(get_the_title()) . '</span>' ); } else { printf( /* translators: 1: comment count number, 2: title. */ esc_html(_nx('%1$s Comment', '%1$s Comments', $kadu_comment_count, 'comments title', 'kadu')), number_format_i18n($kadu_comment_count), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '<span>' . wp_kses_post(get_the_title()) . '</span>' ); } ?> </h5><!-- .comments-title --> <?php the_comments_navigation(); ?> <div class="comments-box-wrap mb-20"> <ol class="comment-list list-unstyled mb-0"> <?php wp_list_comments( array( 'callback' => 'kadu_comments' ) ); ?> </ol><!-- .comment-list --> </div> </div> <?php the_comments_navigation(); // If comments are closed and there are comments, let's leave a little note, shall we? if (!comments_open()): ?> <p class="no-comments"> <?php esc_html_e('Comments are closed.', 'kadu'); ?> </p> <?php endif; endif; // Check for have_comments(). ?> </div><!-- #comments --> <div class="blog-details-content"> <div class="contact-form-wrap"> <div class="contact-form"> <?php $args = array( 'comment_notes_after' => '<div class="btn-wrap"> <button class="contact-form-btn" type="button" aria-label="name"> <span class="text" data-back="'.esc_attr('Post Comment').'" data-front="'.esc_attr('Post Comment').'"></span> <span class="icon"> <i class="fa-solid fa-arrow-right"></i> </span> </button> </div>' ); comment_form($args); ?> </div> </div> </div>