/
var
/
www
/
vhosts
/
ihelp.ro
/
ajutam.ro
/
wp-content
/
themes
/
charity-is-hope
/
fw
/
/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/themes/charity-is-hope/fw
mkdir
upload
Name
Size
Mode
Actions
core/
-
0755
rm
css/
-
0755
rm
images/
-
0755
rm
js/
-
0755
rm
lib/
-
0755
rm
loader.php
7121
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/themes/charity-is-hope/fw/loader.php
(7121B)
<?php /** * Charity Is Hope Framework * * @package charity_is_hope * @since charity_is_hope 1.0 */ // Disable direct call if ( ! defined( 'ABSPATH' ) ) { exit; } // Framework directory path from theme root if ( ! defined( 'CHARITY_IS_HOPE_FW_DIR' ) ) define( 'CHARITY_IS_HOPE_FW_DIR', 'fw' ); if ( ! defined( 'CHARITY_IS_HOPE_THEME_PATH' ) ) define( 'CHARITY_IS_HOPE_THEME_PATH', trailingslashit( get_template_directory() ) ); if ( ! defined( 'CHARITY_IS_HOPE_FW_PATH' ) ) define( 'CHARITY_IS_HOPE_FW_PATH', CHARITY_IS_HOPE_THEME_PATH . CHARITY_IS_HOPE_FW_DIR . '/' ); // Include theme variables storage require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.storage.php'; // Theme variables storage charity_is_hope_storage_set('options_prefix', 'charity_is_hope'); charity_is_hope_storage_set('page_template', ''); // Storage for current page template name (used in the inheritance system) charity_is_hope_storage_set('widgets_args', array( // Arguments to register widgets 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h5 class="widget_title">', 'after_title' => '</h5>', ) ); /* Theme setup section -------------------------------------------------------------------- */ if ( !function_exists( 'charity_is_hope_loader_theme_setup' ) ) { add_action( 'after_setup_theme', 'charity_is_hope_loader_theme_setup', 20 ); function charity_is_hope_loader_theme_setup() { // Before init theme do_action('charity_is_hope_action_before_init_theme'); // Load current values for main theme options charity_is_hope_load_main_options(); // Theme core init - only for admin side. In frontend it called from action 'wp' if ( is_admin() ) { charity_is_hope_core_init_theme(); } } } /* Include core parts ------------------------------------------------------------------------ */ // String utilities. core.strings must be first - we use charity_is_hope_str...() in the charity_is_hope_get_file_dir() require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.strings.php'; // File utilities. core.files must be first - we use charity_is_hope_get_file_dir() to include all rest parts require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.files.php'; // Debug utilities require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.debug.php'; // Include custom theme files require_once CHARITY_IS_HOPE_THEME_PATH . 'includes/theme.options.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'includes/theme.styles.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'includes/theme.styles.no_less.php'; // Include core files require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.admin.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.arrays.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.date.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.html.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.http.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.ini.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.less.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.lists.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.media.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.messages.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.storage.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.templates.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.theme.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.wp.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/support.attachment.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/support.post.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/support.post_type.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/support.taxonomy.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.customizer/core.customizer.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.customizer.wp/core.customizer.wp.php'; require_once CHARITY_IS_HOPE_FW_PATH . 'core/core.options/core.options.php'; // Include theme-specific plugins and post types require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.essgrids.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.gutenberg.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.mailchimp.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.revslider.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.tribe-events.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.trx_donations.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.visual-composer.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.woocommerce.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.wpml.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.give.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.contact-form-7.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.elegro-payment.php'; require_once CHARITY_IS_HOPE_THEME_PATH . 'plugins/plugin.trx-updater.php'; // Include theme templates. // Using get_template_part(), because templates can be replaced in the child theme get_template_part('templates/404'); get_template_part('templates/attachment'); get_template_part('templates/excerpt'); get_template_part('templates/gallery'); get_template_part('templates/masonry'); get_template_part('templates/no-articles'); get_template_part('templates/no-search'); get_template_part('templates/portfolio'); get_template_part('templates/related'); get_template_part('templates/single-portfolio'); get_template_part('templates/single-standard'); get_template_part('templates/single-team'); get_template_part('templates/headers/header_1'); get_template_part('templates/headers/header_3'); get_template_part('templates/headers/header_6'); get_template_part('templates/headers/header_7'); get_template_part('templates/trx_blogger/accordion'); get_template_part('templates/trx_blogger/date'); get_template_part('templates/trx_blogger/list'); get_template_part('templates/trx_blogger/plain'); get_template_part('templates/trx_blogger/polaroid'); get_template_part('templates/trx_clients/clients-1'); get_template_part('templates/trx_clients/clients-2'); get_template_part('templates/trx_events/events-1'); get_template_part('templates/trx_form/form_1'); get_template_part('templates/trx_form/form_2'); get_template_part('templates/trx_form/form_custom'); get_template_part('templates/trx_services/services-1'); get_template_part('templates/trx_services/services-2'); get_template_part('templates/trx_services/services-3'); get_template_part('templates/trx_services/services-4'); get_template_part('templates/trx_services/services-5'); get_template_part('templates/trx_team/team-1'); get_template_part('templates/trx_team/team-2'); get_template_part('templates/trx_team/team-3'); get_template_part('templates/trx_team/team-4'); get_template_part('templates/trx_testimonials/testimonials-1'); get_template_part('templates/trx_testimonials/testimonials-2'); get_template_part('templates/trx_testimonials/testimonials-3'); get_template_part('templates/trx_testimonials/testimonials-4'); ?>
Save
cmd:
run