'ffffff', )); add_theme_support('custom-header', array( 'height' => '40', 'flex-height' => false, 'width' => '140', 'flex-width' => false, 'uploads' => true, 'header-text' => true, )); add_theme_support( 'custom-logo', array( 'height' => 100, 'weight' => 100, 'flex-height' => true, 'flex-weight' => true, ) ); add_theme_support('customize-selective-refresh-widgets'); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', 'navigation-widgets' ) ); add_theme_support('post-thumbnails'); add_theme_support('title-tag'); register_nav_menus(array( 'primary' => esc_html__('Primary', 'bullet'), )); if (!isset($content_width)) { $content_width = 900; } function bullet_content_width() { $GLOBALS['content-width'] = apply_filters('bullet_content_width', 1400); } add_action('after_setup_theme', 'bullet_content_width', 0); function bullet_add_editor_styles() { add_editor_style('./css/bootstrap.min.css'); } add_action('admin_init', 'bullet_add_editor_styles'); load_theme_textdomain('bullet', get_template_directory() . '/languages'); } endif; add_action('after_setup_theme', 'bullet_setup');