array( 'value' => 'left-sidebar', 'thumbnail' => get_template_directory_uri() . '/candidthemes/assets/custom/img/left-sidebar.jpg' ), 'right-sidebar' => array( 'value' => 'right-sidebar', 'thumbnail' => get_template_directory_uri() . '/candidthemes/assets/custom/img/right-sidebar.jpg' ), 'middle-column' => array( 'value' => 'middle-column', 'thumbnail' => get_template_directory_uri() . '/candidthemes/assets/custom/img/middle-column.jpg' ), 'no-sidebar' => array( 'value' => 'no-sidebar', 'thumbnail' => get_template_directory_uri() . '/candidthemes/assets/custom/img/no-sidebar.jpg' ), 'default-sidebar' => array( 'value' => 'default-sidebar', 'thumbnail' => get_template_directory_uri() . '/candidthemes/assets/custom/img/default-sidebar.jpg' ) ); return apply_filters( 'arther_sidebar_layout_options', $arther_sidebar_layout_options ); } endif; /** * Custom Metabox * * @since Refined Magazine 1.0.0 * * @param null * @return void * */ if( !function_exists( 'arther_add_metabox' )): function arther_add_metabox() { add_meta_box( 'arther_sidebar_layout', // $id __( 'Sidebar Layout', 'arther' ), // $title 'arther_sidebar_layout_callback', // $callback 'post', // $page 'normal', // $context 'high' ); // $priority add_meta_box( 'arther_sidebar_layout', // $id __( 'Sidebar Layout', 'arther' ), // $title 'arther_sidebar_layout_callback', // $callback 'page', // $page 'normal', // $context 'high' ); // $priority } endif; add_action('add_meta_boxes', 'arther_add_metabox'); /** * Callback function for metabox * * @since Refined Magazine 1.0.0 * * @param null * @return void * */ if ( !function_exists('arther_sidebar_layout_callback') ) : function arther_sidebar_layout_callback(){ global $post; $arther_sidebar_layout_options = arther_sidebar_layout_options(); $arther_sidebar_layout = 'default-sidebar'; $arther_sidebar_meta_layout = get_post_meta( $post->ID, 'arther_sidebar_layout', true ); if( !arther_is_null_or_empty($arther_sidebar_meta_layout) ){ $arther_sidebar_layout = $arther_sidebar_meta_layout; } wp_nonce_field( basename( __FILE__ ), 'arther_sidebar_layout_nonce' ); ?>

/>