esc_html__( "Footer Menu", "bnw-theme" ), ) ); register_nav_menus( array( "main-menu" => esc_html__( "Main Menu", "bnw-theme" ), ) ); register_nav_menus( array( "top-menu" => esc_html__( "Top Menu", "bnw-theme" ), ) ); // HTML5 Support add_theme_support( "html5", array( "search-form", "comment-form", "comment-list", "gallery", "caption", ) ); // Enable support for Post Formats. add_theme_support( "post-formats", array( "aside", "image", "video", "quote", "link", "gallery", "status", "audio", "chat" ) ); // } endif; add_action( "after_setup_theme" , "bnw_theme_bootstrapping" ); // Content Width // ================================================================= if( ! function_exists( "bnw_theme_content_width" ) ): function bnw_theme_content_width(){ if ( ! isset( $content_width ) ) { $content_width = 770; } } endif; add_action( "after_setup_theme" , "bnw_theme_content_width" , 0 ); // Custom Header // ================================================================= if ( ! function_exists( "bnw_theme_custom_header_setup" ) ): function bnw_theme_custom_header_setup(){ add_theme_support( "custom-header", apply_filters( "bnw_theme_custom_header_args", array( "default-image" => "", "default-text-color" => "000000", "width" => 1170, "height" => 250, "flex-height" => true, "wp-head-callback" => "bnw_theme_custom_header_style", ) ) ); } endif; add_action( "after_setup_theme" , "bnw_theme_custom_header_setup" ); if ( ! function_exists( "bnw_theme_custom_header_style" ) ): function bnw_theme_custom_header_style(){ } endif; // Custom Background // ================================================================= if ( ! function_exists( "bnw_theme_custom_background" ) ): function bnw_theme_custom_background(){ add_theme_support( 'custom-background', apply_filters( 'bnw_theme_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; add_action( "after_setup_theme" , "bnw_theme_custom_background" ); // Editor Styling // ================================================================= if ( ! function_exists( "bnw_theme_custom_editor_style" ) ): function bnw_theme_custom_editor_style(){ add_editor_style( "/assets/css/editor-style.css" ); } endif; add_action( "after_setup_theme" , "bnw_theme_custom_editor_style" );