at path:
ROOT
/
wp-content
/
themes
/
jannah
/
comments.php
run:
R
W
Run
assets
DIR
2025-12-16 15:53:27
R
W
Run
buddypress
DIR
2025-12-16 15:53:27
R
W
Run
framework
DIR
2025-12-16 15:53:27
R
W
Run
inc
DIR
2025-12-16 15:53:27
R
W
Run
languages
DIR
2025-12-16 15:53:27
R
W
Run
templates
DIR
2025-12-16 15:53:27
R
W
Run
404.php
1.41 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
archive-web-story.php
1.11 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
archive.php
1.38 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
author.php
1.42 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
buddypress.php
816 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
category.php
3.89 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
comments.php
1.52 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
footer.php
404 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
functions.php
4.38 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
header.php
977 By
2025-12-23 11:06:26
R
W
Run
Delete
Rename
index.php
1.05 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
page.php
590 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
prepros.cfg
423.53 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
prepros.config
99.75 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
rtl.css
36 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
screenshot.jpg
60.18 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
search.php
1.45 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar-footer.php
2.85 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar-shop.php
751 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar-slide.php
4.07 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar.php
2.48 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
single.php
359 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
style.css
704 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
tag.php
1.42 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
template-authors.php
230 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
template-masonry.php
377 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
template-sitemap.php
227 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
wpml-config.xml
7.17 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
error_log
up
📄
comments.php
Save
<?php /** * The template for displaying comments * */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly /* * 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; } if ( have_comments() || comments_open() ) : ?> <div id="comments" class="comments-area"> <?php if ( have_comments() ) : ?> <div id="comments-box" class="container-wrapper"> <div class="block-head"> <h3 id="comments-title" <?php tie_box_class() ?>> <?php $comments_number = get_comments_number(); if ( $comments_number > 1 ){ printf( esc_html__( '%s Comments', TIELABS_TEXTDOMAIN ), get_comments_number_text( '0', '1', '%' ) ); } else { esc_html_e( 'One Comment', TIELABS_TEXTDOMAIN ); } ?> </h3> </div><!-- .block-head /--> <?php the_comments_navigation(); ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, 'avatar_size' => 70, ) ); ?> </ol><!-- .comment-list --> <?php the_comments_navigation(); ?> </div><!-- #comments-box --> <?php endif; // Check for have_comments(). ?> <?php comment_form( array( 'title_reply_before' => '<h3 id="reply-title" '. tie_box_class( 'comment-reply-title', false ) .'>' ) ); ?> </div><!-- .comments-area --> <?php endif; // Check for have_comments() || comments_open() ?>