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 /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
css
[ DIR ]
drwxr-xr-x
custom-controls
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
tgmpa
[ DIR ]
drwxr-xr-x
class-webfont-loader.php
18.77
KB
-rwxr-xr-x
custom-functions.php
24.02
KB
-rwxr-xr-x
extras.php
61.23
KB
-rwxr-xr-x
fontawesome.php
43.45
KB
-rwxr-xr-x
metabox.php
4.94
KB
-rwxr-xr-x
partials.php
6.68
KB
-rwxr-xr-x
template-functions.php
22.55
KB
-rwxr-xr-x
toolkit-functions.php
6
KB
-rwxr-xr-x
typography.php
13.36
KB
-rwxr-xr-x
widgets.php
3.5
KB
-rwxr-xr-x
woocommerce-functions.php
2.81
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : metabox.php
<?php /** * Blossom Spa Metabox for Sidebar Layout * * @package Blossom_Spa * */ function blossom_spa_add_sidebar_layout_box(){ $page_for_posts = get_option( 'page_for_posts' ); $post_id = isset( $_GET['post'] ) ? $_GET['post'] : ''; $shop_id = get_option( 'woocommerce_shop_page_id' ); $template = get_post_meta( $post_id, '_wp_page_template', true ); $templates = array( 'templates/blossom-portfolio.php' ); /** * Remove sidebar metabox in specific page template. */ if( ( ! in_array( $template, $templates ) && $shop_id != $post_id ) && ( $page_for_posts != $post_id ) ){ add_meta_box( 'blossom_spa_sidebar_layout', __( 'Sidebar Layout', 'blossom-spa' ), 'blossom_spa_sidebar_layout_callback', 'page', 'normal', 'high' ); } //for post add_meta_box( 'blossom_spa_sidebar_layout', __( 'Sidebar Layout', 'blossom-spa' ), 'blossom_spa_sidebar_layout_callback', 'post', 'normal', 'high' ); } add_action( 'add_meta_boxes', 'blossom_spa_add_sidebar_layout_box' ); $blossom_spa_sidebar_layout = array( 'default-sidebar'=> array( 'value' => 'default-sidebar', 'label' => __( 'Default Sidebar', 'blossom-spa' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/default-sidebar.png' ), ), 'no-sidebar' => array( 'value' => 'no-sidebar', 'label' => __( 'Full Width', 'blossom-spa' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width.png' ), ), 'centered' => array( 'value' => 'centered', 'label' => __( 'Full Width Centered', 'blossom-spa' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width-centered.png' ), ), 'left-sidebar' => array( 'value' => 'left-sidebar', 'label' => __( 'Left Sidebar', 'blossom-spa' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/left-sidebar.png' ), ), 'right-sidebar' => array( 'value' => 'right-sidebar', 'label' => __( 'Right Sidebar', 'blossom-spa' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/right-sidebar.png' ), ) ); function blossom_spa_sidebar_layout_callback(){ global $post , $blossom_spa_sidebar_layout; wp_nonce_field( basename( __FILE__ ), 'blossom_spa_nonce' ); ?> <table class="form-table"> <tr> <td colspan="4"><em class="f13"><?php esc_html_e( 'Choose Sidebar Template', 'blossom-spa' ); ?></em></td> </tr> <tr> <td> <?php foreach( $blossom_spa_sidebar_layout as $field ){ $layout = get_post_meta( $post->ID, '_blossom_spa_sidebar_layout', true ); ?> <div class="hide-radio radio-image-wrapper" style="float:left; margin-right:30px;"> <input id="<?php echo esc_attr( $field['value'] ); ?>" type="radio" name="blossom_spa_sidebar_layout" value="<?php echo esc_attr( $field['value'] ); ?>" <?php checked( $field['value'], $layout ); if( empty( $layout ) ){ checked( $field['value'], 'default-sidebar' ); }?>/> <label class="description" for="<?php echo esc_attr( $field['value'] ); ?>"> <img src="<?php echo esc_url( $field['thumbnail'] ); ?>" alt="<?php echo esc_attr( $field['label'] ); ?>" /> </label> </div> <?php } // end foreach ?> <div class="clear"></div> </td> </tr> </table> <?php } function blossom_spa_save_sidebar_layout( $post_id ){ global $blossom_spa_sidebar_layout , $post; // Verify the nonce before proceeding. if ( !isset( $_POST[ 'blossom_spa_nonce' ] ) || !wp_verify_nonce( $_POST[ 'blossom_spa_nonce' ], basename( __FILE__ ) ) ) return; // Stop WP from clearing custom fields on autosave if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE) return; if ('page' == $_POST['post_type']) { if (!current_user_can( 'edit_page', $post_id ) ) return $post_id; } elseif (!current_user_can( 'edit_post', $post_id ) ) { return $post_id; } $layout = isset( $_POST['blossom_spa_sidebar_layout'] ) ? sanitize_key( $_POST['blossom_spa_sidebar_layout'] ) : 'default-sidebar'; if ( array_key_exists( $layout, $blossom_spa_sidebar_layout ) ) { update_post_meta( $post_id, '_blossom_spa_sidebar_layout', $layout ); } else { delete_post_meta( $post_id, '_blossom_spa_sidebar_layout' ); } } add_action( 'save_post' , 'blossom_spa_save_sidebar_layout' );
Close