WP_Theme::network_disable_theme() WordPress Method
The WP_Theme::network_disable_theme() function allows you to disable a theme for all sites on a network. This function takes a theme object as its only parameter.
WP_Theme::network_disable_theme( string|string[] $stylesheets ) #
Disables a theme for all sites on the current network.
Parameters
- $stylesheets
(string|string[])(Required)Stylesheet name or array of stylesheet names.
Source
File: wp-includes/class-wp-theme.php
public static function network_disable_theme( $stylesheets ) {
if ( ! is_multisite() ) {
return;
}
if ( ! is_array( $stylesheets ) ) {
$stylesheets = array( $stylesheets );
}
$allowed_themes = get_site_option( 'allowedthemes' );
foreach ( $stylesheets as $stylesheet ) {
if ( isset( $allowed_themes[ $stylesheet ] ) ) {
unset( $allowed_themes[ $stylesheet ] );
}
}
update_site_option( 'allowedthemes', $allowed_themes );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |