100, 'width' => 400, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description' ), ); add_theme_support( 'custom-logo', $defaults_logo ); //custom background support $defaults_bg = array( 'default-repeat' => 'no-repeat', 'default-attachment' => 'fixed', ); add_theme_support( 'custom-background', $defaults_bg ); //custom header support $defaults_header = array( 'width' => 1200, 'height' => 300, 'uploads' => true, ); add_theme_support( 'custom-header', $defaults_header ); } //Make theme available for translation. load_theme_textdomain( 'fasto' ); //Register primary menu register_nav_menus( array( 'primary' => esc_html__('Primary Menu', 'fasto'), ) ); } public function add_editor_styles() { add_editor_style( 'css/fasto-editor-style.css' ); } } # GO! new Fasto_core_setup;