Changeset 20863 for trunk/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 05/24/2012 02:07:16 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-manager.php
r20861 r20863 255 255 256 256 wp_enqueue_script( 'customize-preview' ); 257 add_action( 'wp_head', array( $this, 'customize_preview_base' ) ); 257 258 add_action( 'wp_footer', array( $this, 'customize_preview_settings' ), 20 ); 258 259 … … 264 265 } 265 266 266 267 /** 268 * Print javascript settings. 267 /** 268 * Print base element for preview frame. 269 * 270 * @since 3.4.0 271 */ 272 public function customize_preview_base() { 273 ?><base href="<?php echo home_url( '/' ); ?>" /><?php 274 } 275 276 /** 277 * Print javascript settings for preview frame. 269 278 * 270 279 * @since 3.4.0
Note: See TracChangeset
for help on using the changeset viewer.