esc_html__( 'Primary', 'best-hotel' ), 'menu-2' => esc_html__( 'Footer', 'best-hotel' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'best_hotel_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( 'custom-header', apply_filters( 'best_hotel_custom_header_args', array( 'default-image' => '', 'width' => 1200, 'height' => 400, 'flex-height' => true, 'header-text' => false, 'wp-head-callback' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } endif; add_action( 'after_setup_theme', 'best_hotel_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function best_hotel_custom_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'best_hotel_content_width', 640 ); } add_action( 'after_setup_theme', 'best_hotel_custom_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function best_hotel_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'best-hotel' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'best-hotel' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'best-hotel' ), 1 ), 'id' => 'footer-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'best-hotel' ), 2 ), 'id' => 'footer-2', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'best-hotel' ), 3 ), 'id' => 'footer-3', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'best-hotel' ), 4 ), 'id' => 'footer-4', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'best_hotel_widgets_init' ); /** * Enqueue scripts and styles. */ function best_hotel_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; wp_enqueue_style( 'best-hotel-google-fonts', best_hotel_fonts_url(), array(), BEST_HOTEL_VERSION ); wp_enqueue_style( 'best-hotel-font-awesome', get_template_directory_uri() . '/third-party/font-awesome/css/all' . $min . '.css', '', '5.9.0' ); wp_enqueue_style( 'best-hotel-style', get_stylesheet_uri(), array(), BEST_HOTEL_VERSION ); wp_enqueue_script( 'best-hotel-navigation', get_template_directory_uri() . '/js/navigation' . $min . '.js', array(), BEST_HOTEL_VERSION, true ); wp_enqueue_script( 'best-hotel-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix' . $min . '.js', array(), '20130115', true ); wp_enqueue_script( 'best-hotel-custom', get_template_directory_uri() . '/js/script' . $min . '.js', array( 'jquery' ), BEST_HOTEL_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_localize_script( 'best-hotel-navigation', 'bestHotelScreenReaderText', array( 'expandMain' => __( 'Open the main menu', 'best-hotel' ), 'collapseMain' => __( 'Close the main menu', 'best-hotel' ), 'expandChild' => __( 'expand submenu', 'best-hotel' ), 'collapseChild' => __( 'collapse submenu', 'best-hotel' ), ) ); } add_action( 'wp_enqueue_scripts', 'best_hotel_scripts' ); /** * Load init. */ require_once trailingslashit( get_template_directory() ) . 'inc/init.php';