at path:
ROOT
/
wp-content
/
themes
/
kroth
/
inc
/
init.php
run:
R
W
Run
core
DIR
2023-04-17 09:50:05
R
W
Run
plugins
DIR
2023-04-17 09:50:05
R
W
Run
theme-options
DIR
2023-04-17 09:50:05
R
W
Run
backend-functions.php
6.37 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
enqueue-files.php
3.33 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
frontend-functions.php
14.61 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
init.php
1.14 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
theme-support.php
1.86 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
error_log
up
📄
init.php
Save
<?php /* * All Kroth Theme Related Functions Files are Linked here * Author & Copyright: VictorThemes * URL: https://victorthemes.com */ /* Theme All Basic Setup */ require_once( KROTH_FRAMEWORK . '/theme-support.php' ); require_once( KROTH_FRAMEWORK . '/backend-functions.php' ); require_once( KROTH_FRAMEWORK . '/frontend-functions.php' ); require_once( KROTH_FRAMEWORK . '/enqueue-files.php' ); require_once( KROTH_CS_FRAMEWORK . '/custom-style.php' ); require_once( KROTH_CS_FRAMEWORK . '/config.php' ); /* WooCommerce Integration */ if (class_exists( 'WooCommerce' )){ require_once( KROTH_FRAMEWORK . '/plugins/woocommerce/woo-config.php' ); } /* Bootstrap Menu Walker */ require_once( KROTH_FRAMEWORK . '/core/vt-mmenu/wp_bootstrap_navwalker.php' ); /* Install Plugins */ require_once( KROTH_FRAMEWORK . '/plugins/notify/activation.php' ); /* Breadcrumbs */ require_once( KROTH_FRAMEWORK . '/plugins/breadcrumb-trail.php' ); /* Aqua Resizer */ $img_resizer = cs_get_option('theme_img_resizer'); if(!$img_resizer) { require_once( KROTH_FRAMEWORK . '/plugins/aq_resizer.php' ); } /* Sidebars */ require_once( KROTH_FRAMEWORK . '/core/sidebars.php' );