. * * * █████╗ ██████╗ ████████╗██╗ ██╗██╗ ██╗██████╗ * ██╔══██╗██╔══██╗╚══██╔══╝██║ ██║██║ ██║██╔══██╗ * ███████║██████╔╝ ██║ ███████║██║ ██║██████╔╝ * ██╔══██║██╔══██╗ ██║ ██╔══██║██║ ██║██╔══██╗ * ██║ ██║██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ██║ * ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ * * ██████╗ █████╗ ██████╗ ███████╗ ██████╗ ██╗███╗ ██╗██╗ ██╗ █████╗ ███╗ ██╗ * ██╔════╝ ██╔══██╗██╔══██╗██╔════╝██╔════╝ ██║████╗ ██║╚██╗ ██╔╝██╔══██╗████╗ ██║ * ██║ ███╗███████║██████╔╝█████╗ ██║ ███╗██║██╔██╗ ██║ ╚████╔╝ ███████║██╔██╗ ██║ * ██║ ██║██╔══██║██╔══██╗██╔══╝ ██║ ██║██║██║╚██╗██║ ╚██╔╝ ██╔══██║██║╚██╗██║ * ╚██████╔╝██║ ██║██║ ██║███████╗╚██████╔╝██║██║ ╚████║ ██║ ██║ ██║██║ ╚████║ * ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ * */ /** * Prevent Direct Access * * @since 0.1 */ defined('ABSPATH') or die("Restricted access!"); /** * Define global constants * * @since 3.7 */ defined('ALLMT_DIR') or define('ALLMT_DIR', dirname(plugin_basename(__FILE__))); defined('ALLMT_BASE') or define('ALLMT_BASE', plugin_basename(__FILE__)); defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__)); defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__)); defined('ALLMT_TEXT') or define('ALLMT_TEXT', 'all-meta-tags'); defined('ALLMT_VERSION') or define('ALLMT_VERSION', '4.0'); /** * Load the plugin modules * * @since 4.0 */ require_once( ALLMT_PATH . 'inc/php/core.php' ); require_once( ALLMT_PATH . 'inc/php/enqueue.php' ); require_once( ALLMT_PATH . 'inc/php/version.php' ); require_once( ALLMT_PATH . 'inc/php/functional.php' ); require_once( ALLMT_PATH . 'inc/php/page.php' ); require_once( ALLMT_PATH . 'inc/php/messages.php' ); require_once( ALLMT_PATH . 'inc/php/uninstall.php' );