HOME


Mini Shell 1.0
DIR: /home/depancom/www/depancomblogus/wp-content/themes/beautyspot/inc/
Upload File :
Current File : /home/depancom/www/depancomblogus/wp-content/themes/beautyspot/inc/metaboxes-config.php
<?php

// Add Sidebar Settings to pages
if ( class_exists( 'Lsvr_Post_Metabox' ) ) {
	$lsvr_beautyspot_page_sidebar_settings_metabox = new Lsvr_Post_Metabox(array(
		'id' => 'lsvr_beautyspot_page_sidebar_settings',
		'wp_args' => array(
			'title' => __( 'Sidebar Settings', 'beautyspot' ),
			'screen' => 'page',
		),
		'fields' => array(

			// Sidebar
			'lsvr_beautyspot_page_sidebar' => array(
				'type' => 'select',
				'title' => esc_html__( 'Choose Sidebar To Display', 'beautyspot' ),
				'description' => esc_html__( 'Sidebar will be displayed only if the selected page template supports sidebars. You can manage sidebar widgets under Appearance / Widgets.', 'beautyspot' ),
				'choices' => lsvr_beautyspot_get_sidebars(),
				'priority' => 10,
			),

		),
	));
}

?>