Changeset 31968 for trunk/src/wp-includes/class-wp-customize-control.php
- Timestamp:
- 04/01/2015 07:49:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r31954 r31968 1236 1236 1237 1237 /** 1238 * Customize New Theme Control class.1239 *1240 * @since 4.2.01241 *1242 * @see WP_Customize_Control1243 */1244 class WP_Customize_New_Theme_Control extends WP_Customize_Control {1245 1246 /**1247 * Render the control content.1248 *1249 * @since 4.2.01250 */1251 public function render_content() {1252 ?>1253 <div class="theme add-new-theme">1254 <a href="<?php echo admin_url( 'theme-install.php' ); ?>" target="_top">1255 <div class="theme-screenshot">1256 <span></span>1257 </div>1258 <h3 class="theme-name"><?php _e( 'Add New Theme' ); ?></h3>1259 </a>1260 </div>1261 <?php1262 }1263 }1264 1265 /**1266 1238 * Widget Area Customize Control class. 1267 1239 *
Note: See TracChangeset
for help on using the changeset viewer.