- Timestamp:
- 03/27/2017 07:08:54 AM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-includes/rest-api/class-wp-rest-server.php
r39278 r40336 1011 1011 // General site data. 1012 1012 $available = array( 1013 'name' => get_option( 'blogname' ), 1014 'description' => get_option( 'blogdescription' ), 1015 'url' => get_option( 'siteurl' ), 1016 'home' => home_url(), 1017 'namespaces' => array_keys( $this->namespaces ), 1018 'authentication' => array(), 1019 'routes' => $this->get_data_for_routes( $this->get_routes(), $request['context'] ), 1013 'name' => get_option( 'blogname' ), 1014 'description' => get_option( 'blogdescription' ), 1015 'url' => get_option( 'siteurl' ), 1016 'home' => home_url(), 1017 'gmt_offset' => get_option( 'gmt_offset' ), 1018 'timezone_string' => get_option( 'timezone_string' ), 1019 'namespaces' => array_keys( $this->namespaces ), 1020 'authentication' => array(), 1021 'routes' => $this->get_data_for_routes( $this->get_routes(), $request['context'] ), 1020 1022 ); 1021 1023
Note: See TracChangeset
for help on using the changeset viewer.