Estoy intentando activar el segundo complemento automáticamente al activar el primer complemento.
register_activation_hook(__FILE__, 'example_activation' );
function example_activation() {
include_once(ABSPATH .'/wp-admin/includes/plugin.php');
activate_plugin('hello.php');
}
No funciona dentro de register_activation_hook .. Funciona si lo uso directamente como:
include_once(ABSPATH .'/wp-admin/includes/plugin.php');
activate_plugin('hello.php');
¿Cómo puedo solucionarlo? Gracias por ayudar
Solución:
Estoy usando esto para mí ahora:
// When this plugin activate, activate another plugin too.
register_activation_hook(__FILE__, function(){
$dependent = 'hello.php';
if( is_plugin_inactive($dependent) ){
add_action('update_option_active_plugins', function($dependent){
/* for some reason,
activate_plugin($dependent);
is not working */
activate_plugin('hello.php');
});
}
});
// When this plugin deactivate, deactivate another plugin too.
register_deactivation_hook(__FILE__, function(){
$dependent = 'hello.php';
if( is_plugin_active($dependent) ){
add_action('update_option_active_plugins', function($dependent){
deactivate_plugins('hello.php');
});
}
});