Last active
June 23, 2023 01:47
-
-
Save ericclemmons/6275346 to your computer and use it in GitHub Desktop.
Auto-activate WordPress Plugins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add to: path/to/wp-content/wp-themes/your-theme/functions.php | |
/** | |
* Activate required plugins | |
*/ | |
include_once ( ABSPATH . 'wp-admin/includes/plugin.php' ); | |
foreach (array( | |
'plugin-name', | |
) as $plugin) { | |
$path = sprintf('%s/%s.php', $plugin, $plugin); | |
if (!is_plugin_active( $path )) { | |
activate_plugin( $path ); | |
add_action( 'admin_notices', function() use ($plugin) { | |
echo '<div class="updated"><p>' . sprintf('<strong>%s</strong> plugin is required & auto-enabled by the current theme.', $plugin) . '</p></div>'; | |
} ); | |
} | |
} |
thanks for the feature.
Can we auto activate WP Clone by WP academy plugin. I want this while installing the WP.
Thanks
Shiva
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You don't need to check for
is_plugin_active()
becauseactivate_plugin()
does it itself.And here is my other suggestion