<?php /** * Core file. * * This is the template that includes all the other files for core featured of Theme Palace * * @package Theme Palace * @subpackage Businesszen * @since Businesszen 1.0.0 */ /** * Load theme updater functions. * Action is used so that child themes can easily disable. */ function businesszen_theme_updater() { if( is_admin() ) { require get_template_directory() . '/inc/updater/theme-updater.php'; } } add_action( 'after_setup_theme', 'businesszen_theme_updater' ); /** * Include options function. */ require get_template_directory() . '/inc/options.php'; // Load customizer defaults values require get_template_directory() . '/inc/customizer/defaults.php'; /** * Merge values from default options array and values from customizer * * @return array Values returned from customizer * @since Businesszen 1.0.0 */ function businesszen_get_theme_options() { $businesszen_default_options = businesszen_get_default_theme_options(); return array_merge( $businesszen_default_options , get_theme_mod( 'businesszen_theme_options', $businesszen_default_options ) ) ; } /** * Load admin custom styles * */ function businesszen_load_admin_style() { wp_register_style( 'businesszen_admin_css', get_template_directory_uri() . '/assets/css/admin-style.css', false, '1.0.0' ); wp_enqueue_style( 'businesszen_admin_css' ); } add_action( 'admin_enqueue_scripts', 'businesszen_load_admin_style' ); /** * Add breadcrumb functions. */ require get_template_directory() . '/inc/breadcrumb-class.php'; /** * Add helper functions. */ require get_template_directory() . '/inc/helpers.php'; /** * Add structural hooks. */ require get_template_directory() . '/inc/structure.php'; /** * Add metabox */ require get_template_directory() . '/inc/metabox.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer/customizer.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/sections/sections.php'; if ( class_exists( 'WooCommerce' ) ) { /** * Woocommerce */ require get_template_directory() . '/inc/woocommerce.php'; } /** * TGM plugin additions. */ require get_template_directory() . '/inc/tgm-plugin/tgm-hook.php'; if ( class_exists( 'CatchThemesDemoImportPlugin' ) ) { /** * CT plugin demo importer compatibility. */ require get_template_directory() . '/inc/demo-import.php'; } if ( ! function_exists( 'businesszen_category_title' ) ) : function businesszen_category_title( $title ) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'get_the_archive_title', 'businesszen_category_title' ); endif;