Changeset 39468 for trunk/src/wp-includes/option.php
- Timestamp:
- 12/03/2016 05:15:42 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r39406 r39468 1738 1738 ) ); 1739 1739 1740 register_setting( 'general', 'siteurl', array( 1741 'show_in_rest' => array( 1742 'name' => 'url', 1743 'schema' => array( 1744 'format' => 'uri', 1740 if ( ! is_multisite() ) { 1741 register_setting( 'general', 'siteurl', array( 1742 'show_in_rest' => array( 1743 'name' => 'url', 1744 'schema' => array( 1745 'format' => 'uri', 1746 ), 1745 1747 ), 1746 ),1747 'type' => 'string',1748 'description' => __( 'Site URL.' ),1749 ) );1748 'type' => 'string', 1749 'description' => __( 'Site URL.' ), 1750 ) ); 1751 } 1750 1752 1751 1753 register_setting( 'general', 'admin_email', array(
Note: See TracChangeset
for help on using the changeset viewer.