Summery Summery
Ensure that the welcome message is not empty. Currently unused.
Syntax Syntax
Parameters Parameters
- $text
-
(Required)
Return Return
(string)
Source Source
File: wp-includes/ms-functions.php
/** * Update this blog's 'public' setting in the global blogs table. * * Public blogs have a setting of 1, private blogs are 0. * * @since MU (3.0.0) * * @param int $old_value * @param int $value The new public value */ function update_blog_public( $old_value, $value ) { update_blog_status( get_current_blog_id(), 'public', (int) $value ); } /** * Check whether users can self-register, based on Network settings. * * @since MU (3.0.0) * * @return bool */ function users_can_register_signup_filter() {
Advertisement
Changelog Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. |