WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 1024 | |
| 1025 | /** |
| 1026 | * Filters meta for a network on creation. |
| 1027 | * |
| 1028 | * @since 3.7.0 |
| 1029 | * |
| 1030 | * @param array $sitemeta Associative array of network meta keys and values to be inserted. |
| 1031 | * @param int $network_id ID of network to populate. |
| 1032 | */ |
| 1033 | $sitemeta = apply_filters( 'populate_network_meta', $sitemeta, $network_id ); |
| 1034 | |
| 1035 | $insert = ''; |
| 1036 | foreach ( $sitemeta as $meta_key => $meta_value ) { |
| 1037 | if ( is_array( $meta_value ) ) |
| 1038 | $meta_value = serialize( $meta_value ); |
| 1039 | if ( !empty( $insert ) ) |
| 1040 | $insert .= ', '; |
| 1041 | $insert .= $wpdb->prepare( "( %d, %s, %s)", $network_id, $meta_key, $meta_value ); |
| 1042 | } |