label); ?> label); ?>

label); ?>

add_panel('mh_theme_options', array('title' => __('Theme Options', 'mh-magazine-lite'), 'description' => '', 'capability' => 'edit_theme_options', 'theme_supports' => '', 'priority' => 1,)); /***** Add Sections *****/ $wp_customize->add_section('mh_general', array('title' => __('General Options', 'mh-magazine-lite'), 'priority' => 1, 'panel' => 'mh_theme_options')); $wp_customize->add_section('mh_layout', array('title' => __('Layout Options', 'mh-magazine-lite'), 'priority' => 2, 'panel' => 'mh_theme_options')); $wp_customize->add_section('mh_content', array('title' => __('Posts/Pages Options', 'mh-magazine-lite'), 'priority' => 3, 'panel' => 'mh_theme_options')); $wp_customize->add_section('mh_upgrade', array('title' => __('Upgrade to Premium', 'mh-magazine-lite'), 'priority' => 5, 'panel' => 'mh_theme_options')); /***** Add Settings *****/ $wp_customize->add_setting('mh_options[full_bg]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_checkbox')); $wp_customize->add_setting('mh_options[no_prettyphoto]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_checkbox')); $wp_customize->add_setting('mh_options[excerpt_length]', array('default' => '125', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_integer')); $wp_customize->add_setting('mh_options[excerpt_more]', array('default' => '[...]', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_text')); $wp_customize->add_setting('mh_options[sb_position]', array('default' => 'right', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_select')); $wp_customize->add_setting('mh_options[author_box]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_checkbox')); $wp_customize->add_setting('mh_options[comments_pages]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_checkbox')); $wp_customize->add_setting('mh_options[post_nav]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_checkbox')); $wp_customize->add_setting('mh_options[related_posts]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'mh_sanitize_checkbox')); $wp_customize->add_setting('mh_options[premium_version_label]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'esc_attr')); $wp_customize->add_setting('mh_options[premium_version_text]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'esc_attr')); $wp_customize->add_setting('mh_options[premium_version_button]', array('default' => '', 'type' => 'option', 'sanitize_callback' => 'esc_attr')); /***** Add Controls *****/ $wp_customize->add_control('full_bg', array('label' => __('Scale background image to full size', 'mh-magazine-lite'), 'section' => 'mh_general', 'settings' => 'mh_options[full_bg]', 'priority' => 1, 'type' => 'checkbox')); $wp_customize->add_control('no_prettyphoto', array('label' => __('Disable prettyPhoto lightbox', 'mh-magazine-lite'), 'section' => 'mh_general', 'settings' => 'mh_options[no_prettyphoto]', 'priority' => 2, 'type' => 'checkbox')); $wp_customize->add_control('excerpt_length', array('label' => __('Custom excerpt length in characters', 'mh-magazine-lite'), 'section' => 'mh_general', 'settings' => 'mh_options[excerpt_length]', 'priority' => 4, 'type' => 'text')); $wp_customize->add_control('excerpt_more', array('label' => __('Custom excerpt more text', 'mh-magazine-lite'), 'section' => 'mh_general', 'settings' => 'mh_options[excerpt_more]', 'priority' => 5, 'type' => 'text')); $wp_customize->add_control('sb_position', array('label' => __('Position of default sidebar', 'mh-magazine-lite'), 'section' => 'mh_layout', 'settings' => 'mh_options[sb_position]', 'priority' => 7, 'type' => 'select', 'choices' => array('left' => __('Left', 'mh-magazine-lite'), 'right' => __('Right', 'mh-magazine-lite')))); $wp_customize->add_control('author_box', array('label' => __('Disable author box on posts/archives', 'mh-magazine-lite'), 'section' => 'mh_content', 'settings' => 'mh_options[author_box]', 'priority' => 7, 'type' => 'checkbox')); $wp_customize->add_control('comments_pages', array('label' => __('Enable comments on pages', 'mh-magazine-lite'), 'section' => 'mh_content', 'settings' => 'mh_options[comments_pages]', 'priority' => 9, 'type' => 'checkbox')); $wp_customize->add_control('post_nav', array('label' => __('Enable post / attachment navigation', 'mh-magazine-lite'), 'section' => 'mh_content', 'settings' => 'mh_options[post_nav]', 'priority' => 10, 'type' => 'checkbox')); $wp_customize->add_control('related_posts', array('label' => __('Enable related articles on posts', 'mh-magazine-lite'), 'section' => 'mh_content', 'settings' => 'mh_options[related_posts]', 'priority' => 11, 'type' => 'checkbox')); $wp_customize->add_control(new MH_Customize_Header_Control($wp_customize, 'premium_version_label', array('label' => __('Need more features and options?', 'mh-magazine-lite'), 'section' => 'mh_upgrade', 'settings' => 'mh_options[premium_version_label]', 'priority' => 1))); $wp_customize->add_control(new MH_Customize_Text_Control($wp_customize, 'premium_version_text', array('label' => __('Check out the Premium Version of this theme which comes with additional features and advanced customization options for your website.', 'mh-magazine-lite'), 'section' => 'mh_upgrade', 'settings' => 'mh_options[premium_version_text]', 'priority' => 2))); $wp_customize->add_control(new MH_Customize_Button_Control($wp_customize, 'premium_version_button', array('label' => __('Learn more about the Premium Version', 'mh-magazine-lite'), 'section' => 'mh_upgrade', 'settings' => 'mh_options[premium_version_button]', 'priority' => 3))); } add_action('customize_register', 'mh_magazine_lite_customize_register'); /***** Data Sanitization *****/ function mh_sanitize_text($input) { return wp_kses_post(force_balance_tags($input)); } function mh_sanitize_integer($input) { return strip_tags($input); } function mh_sanitize_checkbox($input) { if ($input == 1) { return 1; } else { return ''; } } function mh_sanitize_select($input) { $valid = array( 'left' => __('Left', 'mh-magazine-lite'), 'right' => __('Right', 'mh-magazine-lite') ); if (array_key_exists($input, $valid)) { return $input; } else { return ''; } } /***** Return Theme Options / Set Default Options *****/ if (!function_exists('mh_magazine_lite_theme_options')) { function mh_magazine_lite_theme_options() { $theme_options = wp_parse_args( get_option('mh_options', array()), mh_magazine_lite_default_options() ); return $theme_options; } } if (!function_exists('mh_magazine_lite_default_options')) { function mh_magazine_lite_default_options() { $default_options = array( 'full_bg' => '', 'no_prettyphoto' => '', 'excerpt_length' => '125', 'excerpt_more' => '[...]', 'sb_position' => 'right', 'author_box' => '', 'comments_pages' => '', 'post_nav' => '', 'related_posts' => '', 'premium_version_label' => '', 'premium_version_text' => '', 'premium_version_button' => '' ); return $default_options; } } ?>