Current Path : /home/church/public_html/launch100ar.com/wp-content/themes/minimalistblogger/inc/ |
Current File : /home/church/public_html/launch100ar.com/wp-content/themes/minimalistblogger/inc/customizer.php |
<?php /** * minimalistblogger Theme Customizer * * @package minimalistblogger */ /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function minimalistblogger_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'minimalistblogger_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'minimalistblogger_customize_partial_blogdescription', ) ); } $wp_customize->add_setting( 'website_background_color', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'website_background_color', array( 'label' => __( 'Background Color', 'minimalistblogger' ), 'section' => 'colors', 'priority' => 1, 'settings' => 'website_background_color', ) ) ); $wp_customize->add_setting( 'header_background_color', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_background_color', array( 'label' => __( 'Header Background Color', 'minimalistblogger' ), 'section' => 'colors', 'priority' => 1, 'settings' => 'header_background_color', ) ) ); $wp_customize->add_section( 'postpage_settings', array( 'title' => __('Posts/Page Settings','minimalistblogger'), 'priority' => 1, 'capability' => 'edit_theme_options', ) ); $wp_customize->add_setting( 'single_post_next_post_nav', array( 'default' => 0, 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'single_post_next_post_nav', array( 'label' => __( 'Show next/previous posts buttons', 'minimalistblogger' ), 'section' => 'postpage_settings', 'priority' => 1, 'settings' => 'single_post_next_post_nav', 'type' => 'checkbox', ) ); } add_action( 'customize_register', 'minimalistblogger_customize_register' ); if(! function_exists('minimalistblogger_customizer_css_final_output' ) ): function minimalistblogger_customizer_css_final_output(){ ?> <style type="text/css"> body, .site, .swidgets-wrap h3, .post-data-text { background: <?php echo esc_attr(get_theme_mod( 'website_background_color')); ?>; } .site-title a, .site-description { color: <?php echo esc_attr(get_theme_mod( 'header_logo_color')); ?>; } .sheader { background: <?php echo esc_attr(get_theme_mod( 'header_background_color')); ?> } </style> <?php } add_action( 'wp_head', 'minimalistblogger_customizer_css_final_output' ); endif; /** * Render the site title for the selective refresh partial. * * @return void */ function minimalistblogger_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function minimalistblogger_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function minimalistblogger_customize_preview_js() { wp_enqueue_script( 'minimalistblogger-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true ); } add_action( 'customize_preview_init', 'minimalistblogger_customize_preview_js' );