at path:
ROOT
/
wp-content
/
themes
/
whizz
/
comments.php
run:
R
W
Run
assets
DIR
2025-08-14 14:58:42
R
W
Run
include
DIR
2025-08-14 14:58:42
R
W
Run
one-click-import
DIR
2025-08-14 14:58:42
R
W
Run
templates
DIR
2025-08-14 14:58:42
R
W
Run
vc_templates
DIR
2025-08-14 14:58:42
R
W
Run
vendor
DIR
2025-08-14 14:58:42
R
W
Run
woocommerce
DIR
2025-08-14 14:58:42
R
W
Run
404.php
1.1 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
archive.php
9.18 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
author.php
10.53 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
category.php
9.08 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
comments.php
2.46 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
composer.json
65 By
2025-08-14 14:58:42
R
W
Run
Delete
Rename
composer.lock
1.95 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
error_log
39.65 KB
2026-06-03 17:30:53
R
W
Run
Delete
Rename
footer.php
4.47 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
functions.php
4.38 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
header.php
13.09 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
index.php
12.99 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
page-hovers.php
16.44 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
page.php
6.16 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
page_with_sidebar.php
7.31 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
readme.txt
1.46 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
screenshot.png
82.91 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
searchform.php
363 By
2025-08-14 14:58:42
R
W
Run
Delete
Rename
single-events.php
12.41 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
single-portfolio.php
16 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
single.php
13.46 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
style.css
2.56 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
tag.php
8.81 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
taxonomy-portfolio-category.php
3.88 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
taxonomy-portfolio-client.php
5.62 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
taxonomy-whizzy-category.php
3.73 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
error_log
up
📄
comments.php
Save
<?php /** * * Comment Form * * @package whizz * @since 1.0.0 * @version 1.1.0 */ if ( post_password_required() ) { return; } ?> <?php // Comment list $comment_list = get_comments_number( get_the_id() ); if( $comment_list > 0 ) : ?> <h3 class="comments-title"><?php printf( _nx( 'One Comment', '<span class="count">%1$s Comments</span>', get_comments_number(), 'Comments', 'whizz' ), number_format_i18n( get_comments_number() ) ); ?></h3> <?php wp_list_comments( array( 'callback' => 'whizz_comment', 'style' => 'ul' ) ); ?> <?php endif; ?> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-below" class="navigation comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'whizz' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( esc_attr__( '← Older Comments', 'whizz' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_attr__( 'Newer Comments →', 'whizz' ) ); ?></div> </nav> <?php endif; ?> <?php $fields = array( 'author' => '<label>' . esc_html__('Name', 'whizz') . '<input required id="name" type="text" name="author" placeholder="' . esc_attr__( 'Your name', 'whizz' ) . '" size="30" tabindex="1" /></label>', 'email' => '<label>' . esc_html__('Email', 'whizz') . '<input required id="email" type="email" name="email" placeholder="' . esc_attr__( 'Your email', 'whizz' ) . '" size="30" tabindex="2" /></label>', ); $comments_args = array( 'id_form' => 'contactform', 'fields' => $fields, 'comment_field' => '<label>' . esc_html__('Comment', 'whizz') . '<textarea required id="comment" aria-required="true" name="comment" placeholder="' . esc_attr__( 'Your Comment', 'whizz' ) . '" rows="8" cols="60" tabindex="3"></textarea></label>', 'must_log_in' => '', 'logged_in_as' => '', 'comment_notes_before' => '', 'comment_notes_after' => '', 'title_reply' => sprintf( esc_attr__( 'Leave a comment', 'whizz' ) ), 'title_reply_to' => esc_attr__( 'Leave a Reply to %s', 'whizz' ), 'cancel_reply_link' => esc_attr__( 'Cancel', 'whizz' ), 'label_submit' => esc_attr__( 'Post comment', 'whizz' ), 'submit_field' => '<div class="input-wrapper clearfix">%1$s %2$s<span id="message"></span></div>', ); ?> <div class="comments-form"> <?php comment_form( $comments_args ); ?> </div>