Changeset 42043 for trunk/src/wp-includes/class-wp-network.php
- Timestamp:
- 10/30/2017 07:55:09 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-network.php
r41861 r42043 220 220 * @since 4.9.0 221 221 * 222 * @param int|null $main_site_id If a positive integer is returned, it is interpreted as the main site ID.223 * @param int $network_id The ID of the networkfor which the main site was detected.222 * @param int|null $main_site_id If a positive integer is returned, it is interpreted as the main site ID. 223 * @param WP_Network $network The network object for which the main site was detected. 224 224 */ 225 $main_site_id = (int) apply_filters( 'pre_get_main_site_id', null, $this ->id);225 $main_site_id = (int) apply_filters( 'pre_get_main_site_id', null, $this ); 226 226 if ( 0 < $main_site_id ) { 227 227 return $main_site_id;
Note: See TracChangeset
for help on using the changeset viewer.