true, 'height' => 100, 'flex-width' => true, 'width' => 1200, 'admin-head-callback' => 'mytheme_admin_header_style', ); add_theme_support( 'custom-header', $header_args ); // This theme uses wp_nav_menu() in one location. add_theme_support('post-thumbnails'); // This theme uses wp_nav_menu() in one location. register_nav_menu( 'primary', __( 'Primary Menu', 'businesso' ) ); // Woocommerce support add_theme_support( 'woocommerce'); add_theme_support( 'automatic-feed-links'); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'audio', ) ); /* Custom Background */ $defaults = array( 'default-image' => get_template_directory_uri().'/images/background/background.jpg', 'default-preset' => 'default', 'default-position-x' => 'left', 'default-position-y' => 'top', 'default-size' => 'auto', 'default-repeat' => 'no-repeat', 'default-attachment' => 'no scroll', 'default-color' => '', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '', ); add_theme_support( 'custom-background', $defaults ); //Default Data if ( ! isset( $content_width ) ) $content_width = 900; require_once('theme_default_data.php'); $businesso_option=theme_default_data(); require( ASIATHEMES_THEME_FUNCTIONS_PATH . '/option-panel/businesso-option-setting.php' ); // for Option Panel } require('template-tags.php'); ?>