PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
<?php /** * The plugin bootstrap file * * @link https://webnus.net/ * @since 1.0.0 * @package Deep */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } /** * The code that runs during plugin activation. * This action is documented in includes/class-plugin-name-activator.php. * * @since 1.0.0 */ add_action( 'activated_plugin', 'deep_activate' ); function deep_activate( $plugin ) { if ( $plugin == plugin_basename( __FILE__ ) ) { exit( wp_redirect( admin_url( 'admin.php?page=wn-admin-demo-importer' ) ) ); } } /** * Define the locale for this plugin for internationalization. * * @since 1.0.0 */ add_action( 'plugins_loaded', 'deep_load_textdomain' ); function deep_load_textdomain() { load_plugin_textdomain( 'deep-plus', false, basename( dirname( __FILE__ ) ) . '/languages/' ); } /** * Load admin/frontend files. * * @since 1.0.0 */ if ( is_admin() ) { require_once DEEP_CORE_DIR . 'admin/class-setup-wizard.php'; require_once DEEP_CORE_DIR . 'admin/dashboard/webnus-admin.php'; } require_once DEEP_CORE_DIR . 'helper-classes/breadcrumbs.php'; require_once DEEP_CORE_DIR . 'helper-classes/cat-field.php'; require_once DEEP_CORE_DIR . 'helper-classes/show-ids.php'; require_once DEEP_CORE_DIR . 'helper-classes/get-the-image.php'; require_once DEEP_CORE_DIR . 'helper-classes/blog-helper.php'; require_once DEEP_CORE_DIR . 'admin/meta-box/meta-box-core/meta-box.php'; require_once DEEP_CORE_DIR . 'admin/meta-box/meta-box-config.php'; require_once DEEP_CORE_DIR . 'admin/header-builder/webnus-header-builder.php'; require_once DEEP_CORE_DIR . 'admin/theme-options/ReduxCore/framework.php'; require_once DEEP_CORE_DIR . 'admin/theme-options/theme-options-config.php'; require_once DEEP_CORE_DIR . 'dynamicfiles/dyncss.php'; require_once DEEP_CORE_DIR . 'functions/functions-helper.php'; require_once DEEP_CORE_DIR . 'functions/functions-general.php'; require_once DEEP_CORE_DIR . 'navigation/navigation.php'; require_once DEEP_CORE_DIR . 'navigation/mega-menu-post-type.php'; require_once DEEP_CORE_DIR . 'footer-builder/footer-builder-post-type.php'; require_once DEEP_CORE_DIR . 'widgets/widgets-init.php'; require_once DEEP_CORE_DIR . 'templates/templates.php'; add_action( 'after_setup_theme', function() { require_once DEEP_CORE_DIR . 'elementor/elementor-integration.php'; if ( ! is_admin() ) { require_once DEEP_CORE_DIR . 'functions/frontend.php'; load_webnus_woocommerce(); } } );
[+]
..
[+]
admin
[+]
widgets
[+]
dynamicfiles
[+]
functions
[+]
navigation
[+]
helper-classes
[+]
templates
[+]
footer-builder
[+]
woocommerce
[+]
elementor
[-] deepcore.php
[edit]
[+]
sections-templates