Make WordPress Core


Ignore:
Timestamp:
03/22/2012 07:17:26 AM (13 years ago)
Author:
koopersmith
Message:

Theme Customizer: Add a WP_Customize_Setting->visibility parameter to show/hide a control based upon the value of another control. Also shifts rendering the setting wrapper element into WP_Customize_Setting->render() and adds WP_Customize_Setting->render_content(). see #19910.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-customize.php

    r20254 r20260  
    619619            'default'        => get_option( 'show_on_front' ),
    620620            'type'           => 'option',
    621             'capability'     => 'manage_options'
     621            'capability'     => 'manage_options',
    622622        ) );
    623623
     
    628628            'control'        => 'dropdown-pages',
    629629            'type'           => 'option',
    630             'capability'     => 'manage_options'
     630            'capability'     => 'manage_options',
     631            'visibility'     => array( 'show_on_front', 'page' ),
    631632        ) );
    632633
     
    637638            'control'        => 'dropdown-pages',
    638639            'type'           => 'option',
    639             'capability'     => 'manage_options'
     640            'capability'     => 'manage_options',
     641            'visibility'     => array( 'show_on_front', 'page' ),
    640642        ) );
    641643
     
    651653            'default'        => get_option( 'blogname' ),
    652654            'type'           => 'option',
    653             'capability'     => 'manage_options'
     655            'capability'     => 'manage_options',
    654656        ) );
    655657
     
    659661            'default'        => get_option( 'blogdescription' ),
    660662            'type'           => 'option',
    661             'capability'     => 'manage_options'
     663            'capability'     => 'manage_options',
    662664        ) );
    663665    }
Note: See TracChangeset for help on using the changeset viewer.