Changeset 38388 for trunk/src/wp-includes/load.php
- Timestamp:
- 08/26/2016 09:34:36 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r38363 r38388 1060 1060 return ( $thing instanceof WP_Error ); 1061 1061 } 1062 1063 /** 1064 * Get the current network. 1065 * 1066 * Returns an object containing the 'id', 'domain', 'path', and 'site_name' 1067 * properties of the network being viewed. 1068 * 1069 * @see wpmu_current_site() 1070 * 1071 * @since MU 1072 * 1073 * @global WP_Network $current_site 1074 * 1075 * @return WP_Network 1076 */ 1077 function get_current_site() { 1078 global $current_site; 1079 return $current_site; 1080 }
Note: See TracChangeset
for help on using the changeset viewer.