wp_kses( sprintf(__("bizmax Options V %s", 'bizmax'), $bizmax_theme_data->get('Version')), array('small' => array()) ), 'menu_title' => esc_html__('Theme Options', 'bizmax'), 'menu_slug' => 'bizmax-options', 'menu_type' => 'submenu', 'menu_parent' => 'bizmax', 'class' => 'bizmax-theme-option-wrapper', 'footer_credit' => wp_kses( __( 'Developed by: ThemeGlow', 'bizmax' ), array( 'a' => array( 'href' => array(), 'target' => array() ), ) ), 'async_webfont' => false, 'defaults' => bizmax_default_theme_options(), )); /* * General options */ require_once 'general-options.php'; /* * Header options */ require_once 'typography-options.php'; /* * Header options */ require_once 'header-options.php'; /* * Page options */ require_once 'banner-options.php'; /* * Page options */ require_once 'page-options.php'; /* * Page options */ require_once 'blog-page-options.php'; /* * Post options */ require_once 'single-post-options.php'; /* * Service options */ require_once 'service-options.php'; /* * Project options */ require_once 'project-options.php'; /* * Team options */ require_once 'team-options.php'; /* * Job options */ require_once 'job-options.php'; /* * WooCommerce Options */ if ( class_exists( 'WooCommerce' ) ) { require_once 'woocommerce-options/woocommerce-options.php'; } /* * Search Page options */ require_once 'search-page-options.php'; /* * Error 404 Page options */ require_once 'error-page-options.php'; /* * Footer options */ require_once 'footer-options.php'; // Custom Css section CSF::createSection( $bizmax_theme_option, array( 'title' => esc_html__( 'Custom Css', 'bizmax' ), 'id' => 'custom_css_options', 'icon' => 'fa fa-css3', 'fields' => array( array( 'id' => 'bizmax_custom_css', 'type' => 'code_editor', 'title' => esc_html__( 'Custom Css', 'bizmax' ), 'settings' => array( 'theme' => 'mbo', 'mode' => 'css', ), 'sanitize' => false, ), ) ) ); /* * Backup options */ CSF::createSection($bizmax_theme_option, array( 'title' => esc_html__('Backup', 'bizmax'), 'id' => 'backup_options', 'icon' => 'fa fa-window-restore', 'fields' => array( array( 'type' => 'backup', ), ) ));