wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



maybe_disable_automattic_widgets › WordPress Function

Depuis2.2.0
Dépréciéen/a
maybe_disable_automattic_widgets ( Pas de paramètres )
Défini(e) dans:
Codex:

Disables the Automattic widgets plugin, which was merged into core.



Source

function maybe_disable_automattic_widgets() {
	$plugins = __get_option( 'active_plugins' );

	foreach ( (array) $plugins as $plugin ) {
		if ( 'widgets.php' === basename( $plugin ) ) {
			array_splice( $plugins, array_search( $plugin, $plugins, true ), 1 );
			update_option( 'active_plugins', $plugins );
			break;
		}
	}
}