| Server IP : 47.82.179.145 / Your IP : 216.73.216.89 Web Server : nginx/1.26.3 System : Linux iZt4n9czhka2zvqfajdlr2Z 6.8.0-63-generic #66-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 13 20:25:30 UTC 2025 x86_64 User : www ( 1001) PHP Version : 8.3.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/scuipturepactory.com/wp-content/themes/blossom-fashion/inc/ |
Upload File : |
<?php
/**
* Metabox for Sidebar Layout
*
* @package Blossom_Fashion
*
*/
function blossom_fashion_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' );
if( ! in_array( $template, $templates ) ){
add_meta_box(
'blossom_fashion_sidebar_layout',
__( 'Sidebar Layout', 'blossom-fashion' ),
'blossom_fashion_sidebar_layout_callback',
'page',
'normal',
'high'
);
}
//for post
add_meta_box(
'blossom_fashion_sidebar_layout',
__( 'Sidebar Layout', 'blossom-fashion' ),
'blossom_fashion_sidebar_layout_callback',
'post',
'normal',
'high'
);
}
add_action( 'add_meta_boxes', 'blossom_fashion_add_sidebar_layout_box' );
$blossom_fashion_sidebar_layout = array(
'default-sidebar'=> array(
'value' => 'default-sidebar',
'label' => __( 'Default Sidebar', 'blossom-fashion' ),
'thumbnail' => esc_url( get_template_directory_uri() . '/images/default-sidebar.png' ),
),
'no-sidebar' => array(
'value' => 'no-sidebar',
'label' => __( 'Full Width', 'blossom-fashion' ),
'thumbnail' => esc_url( get_template_directory_uri() . '/images/full-width.png' ),
),
'left-sidebar' => array(
'value' => 'left-sidebar',
'label' => __( 'Left Sidebar', 'blossom-fashion' ),
'thumbnail' => esc_url( get_template_directory_uri() . '/images/left-sidebar.png' ),
),
'right-sidebar' => array(
'value' => 'right-sidebar',
'label' => __( 'Right Sidebar', 'blossom-fashion' ),
'thumbnail' => esc_url( get_template_directory_uri() . '/images/right-sidebar.png' ),
)
);
function blossom_fashion_sidebar_layout_callback(){
global $post , $blossom_fashion_sidebar_layout;
wp_nonce_field( basename( __FILE__ ), 'blossom_fashion_nonce' );
?>
<table class="form-table">
<tr>
<td colspan="4"><em class="f13"><?php esc_html_e( 'Choose Sidebar Template', 'blossom-fashion' ); ?></em></td>
</tr>
<tr>
<td>
<?php
foreach( $blossom_fashion_sidebar_layout as $field ){
$layout = get_post_meta( $post->ID, '_sidebar_layout', true ); ?>
<div class="radio-image-wrapper" style="float:left; margin-right:30px;">
<label class="description">
<span><img src="<?php echo esc_url( $field['thumbnail'] ); ?>" alt="<?php echo esc_attr( $field['label'] ); ?>" /></span><br/>
<input type="radio" name="blossom_fashion_sidebar_layout" value="<?php echo esc_attr( $field['value'] ); ?>" <?php checked( $field['value'], $layout ); if( empty( $layout ) ){ checked( $field['value'], 'default-sidebar' ); }?>/> <?php echo esc_html( $field['label'] ); ?>
</label>
</div>
<?php } // end foreach
?>
<div class="clear"></div>
</td>
</tr>
</table>
<?php
}
function blossom_fashion_save_sidebar_layout( $post_id ){
global $blossom_fashion_sidebar_layout , $post;
// Verify the nonce before proceeding.
if ( !isset( $_POST[ 'blossom_fashion_nonce' ] ) || !wp_verify_nonce( $_POST[ 'blossom_fashion_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_fashion_sidebar_layout'] ) ? sanitize_key( $_POST['blossom_fashion_sidebar_layout'] ) : 'default-sidebar';
if ( array_key_exists( $layout, $blossom_fashion_sidebar_layout ) ) {
update_post_meta( $post_id, '_sidebar_layout', $layout );
} else {
delete_post_meta( $post_id, '_sidebar_layout' );
}
}
add_action( 'save_post' , 'blossom_fashion_save_sidebar_layout' );