Changeset 38636 for trunk/src/wp-includes/load.php
- Timestamp:
- 09/20/2016 09:38:08 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r38607 r38636 1069 1069 return ( $thing instanceof WP_Error ); 1070 1070 } 1071 1072 /**1073 * Get the current network.1074 *1075 * Returns an object containing the 'id', 'domain', 'path', and 'site_name'1076 * properties of the network being viewed.1077 *1078 * @see wpmu_current_site()1079 *1080 * @since MU1081 *1082 * @global WP_Network $current_site1083 *1084 * @return WP_Network1085 */1086 function get_current_site() {1087 global $current_site;1088 return $current_site;1089 }
Note: See TracChangeset
for help on using the changeset viewer.