Changeset 31950
- Timestamp:
- 04/01/2015 11:34:23 AM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r31933 r31950 1244 1244 1245 1245 /** 1246 * Render the new control.1246 * Render the control content. 1247 1247 * 1248 1248 * @since 4.2.0 1249 1249 */ 1250 public function render() { 1251 if ( is_multisite() || ! current_user_can( 'install_themes') ) { 1252 return; 1253 } 1250 public function render_content() { 1254 1251 ?> 1255 1252 <div class="theme add-new-theme"> -
trunk/src/wp-includes/class-wp-customize-manager.php
r31941 r31950 1172 1172 } 1173 1173 1174 $this->add_control( new WP_Customize_New_Theme_Control( $this, 'add_theme', array( 1175 'section' => 'themes', 1176 'settings' => 'active_theme', 1177 ) ) ); 1174 if ( ! is_multisite() && current_user_can( 'install_themes' ) ) { 1175 $this->add_control( new WP_Customize_New_Theme_Control( $this, 'add_theme', array( 1176 'section' => 'themes', 1177 'settings' => 'active_theme', 1178 ) ) ); 1179 } 1178 1180 1179 1181 /* Site Title & Tagline */
Note: See TracChangeset
for help on using the changeset viewer.