Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'customize_register', 'cefgwrg3434', 21 );
- function cefgwrg3434( $wp_customize ) {
- $defaults = sgwindow_get_defaults();
- //site width range + text
- $wp_customize->add_setting( 'width_site_range', array(
- 'type' => 'empty',
- 'default' => sgwindow_get_theme_mod('width_site'),
- 'capability' => 'edit_theme_options',
- 'transport' => 'postMessage',
- 'sanitize_callback' => 'absint'
- ) );
- $wp_customize->add_control( 'width_site_range', array(
- 'label' => __( '(px)', 'sg-window' ),
- 'section' => 'size',
- 'settings' => 'width_site_range',
- 'type' => 'range',
- 'input_attrs' => array(
- 'min' => 960,
- 'max' => 2200,
- 'step' => 1,),
- 'priority' => $priority++,
- ));
- $wp_customize->add_setting( 'width_site', array(
- 'type' => 'theme_mod',
- 'default' => $defaults['width_site'],
- 'capability' => 'edit_theme_options',
- 'transport' => 'postMessage',
- 'section' => 'size',
- 'sanitize_callback' => 'sgwindow_sanitize_range_width'
- ) );
- $wp_customize->add_control( 'width_site', array(
- 'label' => __( 'Width of the site', 'sg-window' ),
- 'section' => 'size',
- 'settings' => 'width_site',
- 'type' => 'text',
- 'priority' => $priority++,
- ) );
- //New section in customizer: Logotype
- $wp_customize->add_section( 'footer_text_settings', array(
- 'title' => __( 'Footer text', 'sg-window' ),
- 'priority' => $section_priority++,
- 'panel' => 'other',
- ) );
- //New setting in Logotype section: Logo Image
- $wp_customize->add_setting( 'footer_text', array(
- 'default' => $defaults['footer_text'],
- //'sanitize_callback' => 'sgwindow_sanitize_url',
- 'capability' => 'edit_theme_options'
- ) );
- $wp_customize->add_control( 'footr_txt_', array(
- 'label' => __('Footer text', 'sg-window'),
- 'section' => 'footer_text_settings',
- 'settings' => 'footer_text',
- 'priority' => '1',
- ) );
- }
Advertisement
Add Comment
Please, Sign In to add comment