OwlCyberSecurity - MANAGER
Edit File: loader.php
<?php define( 'CONAT_ROOT', get_template_directory() . '/' ); require_once get_template_directory() . '/includes/functions/functions.php'; include_once get_template_directory() . '/includes/classes/base.php'; include_once get_template_directory() . '/includes/classes/dotnotation.php'; include_once get_template_directory() . '/includes/classes/header-enqueue.php'; include_once get_template_directory() . '/includes/classes/options.php'; include_once get_template_directory() . '/includes/classes/ajax.php'; include_once get_template_directory() . '/includes/classes/common.php'; include_once get_template_directory() . '/includes/classes/bootstrap_walker.php'; include_once get_template_directory() . '/includes/library/class-tgm-plugin-activation.php'; require_once get_template_directory() . '/includes/library/hook.php'; add_action( 'after_setup_theme', 'conat_wp_load', 5 ); function conat_wp_load() { defined( 'CONAT_URL' ) or define( 'CONAT_URL', get_template_directory_uri() . '/' ); define( 'CONAT_KEY','!@#conat'); define( 'CONAT_URI', get_template_directory_uri() . '/'); if ( ! defined( 'CONAT_NONCE' ) ) { define( 'CONAT_NONCE', 'conat_wp_theme' ); } ( new \CONAT\Includes\Classes\Base )->loadDefaults(); ( new \CONAT\Includes\Classes\Ajax )->actions(); }