at path:
ROOT
/
wp-content
/
themes
/
understrap
/
comments.php
run:
R
W
Run
css
DIR
2026-02-09 12:38:27
R
W
Run
fonts
DIR
2026-02-09 12:38:27
R
W
Run
global-templates
DIR
2026-02-09 12:38:27
R
W
Run
inc
DIR
2026-02-09 12:38:27
R
W
Run
js
DIR
2026-02-09 12:38:27
R
W
Run
languages
DIR
2026-02-09 12:38:27
R
W
Run
loop-templates
DIR
2026-02-09 12:38:27
R
W
Run
page-templates
DIR
2026-02-09 12:38:27
R
W
Run
sidebar-templates
DIR
2026-02-09 12:38:27
R
W
Run
woocommerce
DIR
2026-02-09 12:38:27
R
W
Run
404.php
2.11 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
LICENSE
34.33 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
archive.php
1.65 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
author.php
2.73 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
comments.php
1.78 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
footer.php
889 By
2026-02-09 12:38:27
R
W
Run
Delete
Rename
functions.php
1.79 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
header.php
1.13 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
index.php
1.8 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
page.php
1.24 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
readme.txt
2.29 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
screenshot.png
494.68 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
search.php
1.7 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
searchform.php
1.54 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
sidebar.php
328 By
2026-02-09 12:38:27
R
W
Run
Delete
Rename
single.php
1.08 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
style.css
1.6 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
error_log
up
📄
comments.php
Save
<?php /** * The template for displaying comments * * The area of the page that contains both current comments * and the comment form. * * @package Understrap */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /* * 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 class="comments-area" id="comments"> <?php // You can start editing here -- including this comment! ?> <?php if ( have_comments() ) : ?> <h2 class="comments-title"> <?php $comments_number = get_comments_number(); if ( 1 === (int) $comments_number ) { printf( /* translators: %s: post title */ esc_html_x( 'One thought on “%s”', 'comments title', 'understrap' ), '<span>' . get_the_title() . '</span>' ); } else { printf( esc_html( /* translators: 1: number of comments, 2: post title */ _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $comments_number, 'comments title', 'understrap' ) ), number_format_i18n( $comments_number ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '<span>' . get_the_title() . '</span>' ); } ?> </h2><!-- .comments-title --> <?php understrap_comment_navigation( 'comment-nav-above' ); ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, ) ); ?> </ol><!-- .comment-list --> <?php understrap_comment_navigation( 'comment-nav-below' ); ?> <?php endif; // End of if have_comments(). ?> <?php comment_form(); // Render comments form. ?> </div><!-- #comments -->