| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/site-identity.php.tar |
home/xbodynamge/lebauwcentre/wp-content/themes/onepress/inc/customize-configs/site-identity.php 0000644 00000003063 15114330320 0027251 0 ustar 00 <?php /** * Site Identity. */ $is_old_logo = get_theme_mod( 'onepress_site_image_logo' ); $wp_customize->add_setting( 'onepress_hide_sitetitle', array( 'sanitize_callback' => 'onepress_sanitize_checkbox', 'default' => $is_old_logo ? 1 : 0, ) ); $wp_customize->add_control( 'onepress_hide_sitetitle', array( 'label' => esc_html__( 'Hide site title', 'onepress' ), 'section' => 'title_tagline', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'onepress_hide_tagline', array( 'sanitize_callback' => 'onepress_sanitize_checkbox', 'default' => $is_old_logo ? 1 : 0, ) ); $wp_customize->add_control( 'onepress_hide_tagline', array( 'label' => esc_html__( 'Hide site tagline', 'onepress' ), 'section' => 'title_tagline', 'type' => 'checkbox', ) ); // Retina Logo $wp_customize->add_setting( 'onepress_retina_logo', array( 'sanitize_callback' => 'sanitize_text_field', 'default' => '', 'transport' => 'postMessage' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'onepress_retina_logo', array( 'label' => esc_html__( 'Retina Logo', 'onepress' ), 'section' => 'title_tagline', ) ) ); // Logo Width $wp_customize->add_setting( 'onepress_logo_height', array( 'sanitize_callback' => 'sanitize_text_field', 'default' => '', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'onepress_logo_height', array( 'label' => esc_html__( 'Logo Height In Pixel', 'onepress' ), 'section' => 'title_tagline', ) );