mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
156 B
Text
5 lines
156 B
Text
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
|
|
|
add_action( 'plugins_loaded', function () {
|
|
deactivate_plugins( 'hello-dolly/hello.php' );
|
|
} );
|