Регистрация tgm требуется подключаемый модуль активации плагина не работает
Я столкнулся с проблемой с TGM, я просто скачать установки с сайта TGM
http://tgmpluginactivation.com/download/
и когда я выполняю действия, описанные на сайте и в загруженном zip-файле, но после выполнения действий, когда я активирую свою настраиваемую тему, она просто активирует свою, не показывая никакого сообщения об активации необходимых плагинов
код моего файла function.php для тем ниже
<?php
require_once get_template_directory() . '/includes/class-tgm-plugin-activation.php';
add_action( 'tgmpa_register', 'custom_register_required_plugins' );
function custom_register_required_plugins() {
/*
* Array of plugin arrays. Required keys are name and slug.
* If the source is NOT from the .org repo, then source is also required.
*/
$plugins = array(
// This is an example of how to include a plugin bundled with a theme.
array(
'name' => esc_html__('Visual Composer','custom'),
'slug' => 'js_composer',
'source' => get_template_directory() . '/plugins/js-composer.zip',
'required' => false,
'version' => '5.1.1',
'force_activation' => false,
'force_deactivation' => false,
'external_url' => '',
),
);
$config = array(
'id' => 'custom', // Unique ID for hashing notices for multiple instances of TGMPA.
'default_path' => '', // Default absolute path to bundled plugins.
'menu' => 'tgmpa-install-plugins', // Menu slug.
'has_notices' => true, // Show admin notices or not.
'dismissable' => true, // If false, a user cannot dismiss the nag message.
'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
'is_automatic' => false, // Automatically activate plugins after installation or not.
'message' => '', // Message to output right before the plugins table.
);
tgmpa( $plugins, $config );
}
подскажите пожалуйста что не так в этом коде почему после acitvate тема не показала ни одного сообщения об активации необходимых плагинов