network_sites_updated_message_

network_sites_updated_message_

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-5.0.3

apply_filters('network_sites_updated_message_') is found 1 times:

  • /wp-admin/network/sites.php line 319
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
                 * @since 3.1.0
                 *
                 * @param string $msg The update message. Default 'Settings saved'.
                 */
                $msg = apply_filters( 'network_sites_updated_message_' . $_GET['updated'], __( 'Settings saved.' ) );
            break;
        }
     
        if ( ! empty( $msg ) )
            $msg = '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
    }