HEX
Server: Apache/2.4.49 (FreeBSD) OpenSSL/1.0.2s-freebsd PHP/5.6.36
System: FreeBSD hosting.icon.bg 11.3-RELEASE-p13 FreeBSD 11.3-RELEASE-p13 #0: Tue Sep 1 06:56:51 UTC 2020 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64
User: ftpuser (1002)
PHP: 5.6.36
Disabled: NONE
Upload Files
File: /hosting/kak.bg/web/wp-content/themes/klasik/functions.php
<?php

/********** KLASIK DEFINITION *************/
global $themeoptionsvalue,  $meta_boxes;

if ( ! isset( $content_width ) ) $content_width = 1140;
$child_path			= get_stylesheet_directory() . '/';
//$admin_path 		= get_template_directory() . '/admin/';
$includes_path 		= get_template_directory() . '/includes/';
$meta_boxes 		= array(); 

define('KLASIK_THEMENAME', 'Klasik');
define('KLASIK_PARENTMENU_SLUG', 'klasiktheme-settings');

/********** END KLASIK DEFINITION *************/

// Theme Options
require_once $includes_path . 'theme-admin.php';

//Theme init
require_once $includes_path . 'theme-init.php';

//Metabox Function
require_once $includes_path . 'theme-metaboxes.php';

//Widgets
require_once $includes_path . 'theme-widgets.php';

//Sidebar
require_once $includes_path . 'theme-sidebar.php';

//Additional function
require_once $includes_path . 'theme-function.php';

//Header function
require_once $includes_path . 'header-function.php';

//Footer function
require_once $includes_path . 'footer-function.php';

//Loading jQuery
require_once $includes_path . 'theme-scripts.php';

//Loading Style Css
require_once $includes_path . 'theme-styles.php';

if(file_exists($child_path . 'includes/child-functions.php')){
	require_once $child_path . 'includes/child-functions.php';
}

if(file_exists($child_path . 'includes/child-metaboxes.php')){
	require_once $child_path . 'includes/child-metaboxes.php';
}

if(file_exists($child_path . 'includes/child-shortcodes.php')){
	require_once $child_path . 'includes/child-shortcodes.php';
}