Changeset 52285 for trunk/src/wp-admin/includes/options.php
- Timestamp:
- 11/30/2021 05:16:13 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/options.php
r50001 r52285 35 35 ?> 36 36 <script type="text/javascript"> 37 jQuery( document).ready(function($){37 jQuery( function($) { 38 38 var $siteName = $( '#wp-admin-bar-site-name' ).children( 'a' ).first(), 39 39 homeURL = ( <?php echo wp_json_encode( get_home_url() ); ?> || '' ).replace( /^(https?:\/\/)?(www\.)?/, '' ); … … 97 97 } 98 98 }); 99 } );99 } ); 100 100 </script> 101 101 <?php … … 110 110 ?> 111 111 <script type="text/javascript"> 112 jQuery( document).ready(function($){112 jQuery( function($) { 113 113 var section = $('#front-static-pages'), 114 114 staticPage = section.find('input:radio[value="page"]'), … … 119 119 check_disabled(); 120 120 section.find( 'input:radio' ).on( 'change', check_disabled ); 121 } );121 } ); 122 122 </script> 123 123 <?php
Note: See TracChangeset
for help on using the changeset viewer.