Changeset 48412 for trunk/src/wp-admin/customize.php
- Timestamp:
- 07/09/2020 11:27:28 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/customize.php
r48111 r48412 133 133 if ( wp_is_mobile() ) : 134 134 $body_class .= ' mobile'; 135 136 ?> 137 <meta name="viewport" id="viewport-meta" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=1.2" /> 138 <?php 135 add_filter( 'admin_viewport_meta', '_customizer_mobile_viewport_meta' ); 139 136 endif; 140 137 … … 172 169 */ 173 170 do_action( 'customize_controls_print_scripts' ); 171 172 /** 173 * Fires when Customizer control scripts are printed. 174 * 175 * @since 5.5.0 176 */ 177 do_action( 'customize_controls_head' ); 174 178 ?> 175 179 </head>
Note: See TracChangeset
for help on using the changeset viewer.