Server IP : 192.64.118.117 / Your IP : 3.15.198.191 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/thecgapy/mcprintingandpromotions.com/wp-content/themes/vilva/inc/ |
Upload File : |
<?php /** * Vilva Metabox for Sidebar Layout * * @package Vilva * */ function vilva_add_sidebar_layout_box(){ $post_id = isset( $_GET['post'] ) ? $_GET['post'] : ''; $template = get_post_meta( $post_id, '_wp_page_template', true ); $templates = array( 'templates/blossom-portfolio.php' ); //for post add_meta_box( 'vilva_sidebar_layout', __( 'Sidebar Layout', 'vilva' ), 'vilva_sidebar_layout_callback', 'post', 'normal', 'high' ); if( ! in_array( $template, $templates ) ){ add_meta_box( 'vilva_sidebar_layout', __( 'Sidebar Layout', 'vilva' ), 'vilva_sidebar_layout_callback', 'page', 'normal', 'high' ); } } add_action( 'add_meta_boxes', 'vilva_add_sidebar_layout_box' ); $vilva_sidebar_layout = array( 'default-sidebar'=> array( 'value' => 'default-sidebar', 'label' => __( 'Default Sidebar', 'vilva' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/default-sidebar.png' ), ), 'no-sidebar' => array( 'value' => 'no-sidebar', 'label' => __( 'Full Width', 'vilva' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width.png' ), ), 'centered' => array( 'value' => 'centered', 'label' => __( 'Full Width Centered', 'vilva' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width-centered.png' ), ), 'left-sidebar' => array( 'value' => 'left-sidebar', 'label' => __( 'Left Sidebar', 'vilva' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/left-sidebar.png' ), ), 'right-sidebar' => array( 'value' => 'right-sidebar', 'label' => __( 'Right Sidebar', 'vilva' ), 'thumbnail' => esc_url( get_template_directory_uri() . '/images/right-sidebar.png' ), ) ); function vilva_sidebar_layout_callback(){ global $post , $vilva_sidebar_layout; wp_nonce_field( basename( __FILE__ ), 'vilva_nonce' ); ?> <table class="form-table"> <tr> <td colspan="4"><em class="f13"><?php esc_html_e( 'Choose Sidebar Template', 'vilva' ); ?></em></td> </tr> <tr> <td> <?php foreach( $vilva_sidebar_layout as $field ){ $layout = get_post_meta( $post->ID, '_vilva_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="vilva_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 vilva_save_sidebar_layout( $post_id ){ global $vilva_sidebar_layout , $post; // Verify the nonce before proceeding. if ( !isset( $_POST[ 'vilva_nonce' ] ) || !wp_verify_nonce( $_POST[ 'vilva_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['vilva_sidebar_layout'] ) ? sanitize_key( $_POST['vilva_sidebar_layout'] ) : 'default-sidebar'; if ( array_key_exists( $layout, $vilva_sidebar_layout ) ) { update_post_meta( $post_id, '_vilva_sidebar_layout', $layout ); } else { delete_post_meta( $post_id, '_vilva_sidebar_layout' ); } } add_action( 'save_post' , 'vilva_save_sidebar_layout' );