<?php /** * This file represents an example of the code that themes would use to register * the required plugins. * * It is expected that theme authors would copy and paste this code into their * functions.php file, and amend to suit. * * @see http://tgmpluginactivation.com/configuration/ for detailed documentation. * * @package TGM-Plugin-Activation * @subpackage Example * @version 2.6.1 for parent theme WP Bootstrap 4 for publication on WordPress.org * @author Thomas Griffin, Gary Jones, Juliette Reinders Folmer * @copyright Copyright (c) 2011, Thomas Griffin * @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later * @link https://github.com/TGMPA/TGM-Plugin-Activation */ /** * Include the TGM_Plugin_Activation class. */ require_once get_template_directory() . '/inc/tgmpa/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'wp_bootstrap_4_register_required_plugins' ); /** * Register the required plugins for this theme. */ function wp_bootstrap_4_register_required_plugins() { $plugins = array( array( 'name' => 'Kirki', 'slug' => 'kirki' ), ); /* * Array of configuration settings. Amend each line as needed. */ $config = array( 'id' => 'wp-bootstrap-4', 'default_path' => '', 'menu' => 'tgmpa-install-plugins', 'has_notices' => true, 'dismissable' => true, 'dismiss_msg' => '', 'is_automatic' => false, 'message' => '', ); tgmpa( $plugins, $config ); }