tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); // Enable support for footer widgets. add_theme_support( 'footer-widgets', 4 ); // Enable excerpt for page. add_post_type_support( 'page', 'excerpt' ); // Load Footer Widget Support. require_if_theme_supports( 'footer-widgets', get_template_directory() . '/inc/footer-widgets.php' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 600, 600, true ); // Set the default content width. $GLOBALS['content_width'] = 525; // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'travel-master' ), 'social' => esc_html__( 'Social', 'travel-master' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'travel_master_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // This setup supports logo, site-title & site-description add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 120, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description' ), ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( '/assets/css/editor-style' . travel_master_min() . '.css', travel_master_fonts_url() ) ); // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Blue', 'travel-master' ), 'slug' => 'blue', 'color' => '#2c7dfa', ), array( 'name' => esc_html__( 'Green', 'travel-master' ), 'slug' => 'green', 'color' => '#07d79c', ), array( 'name' => esc_html__( 'Orange', 'travel-master' ), 'slug' => 'orange', 'color' => '#ff8737', ), array( 'name' => esc_html__( 'Black', 'travel-master' ), 'slug' => 'black', 'color' => '#2f3633', ), array( 'name' => esc_html__( 'Grey', 'travel-master' ), 'slug' => 'grey', 'color' => '#82868b', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'travel-master' ), 'shortName' => esc_html__( 'S', 'travel-master' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'travel-master' ), 'shortName' => esc_html__( 'M', 'travel-master' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'travel-master' ), 'shortName' => esc_html__( 'L', 'travel-master' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'travel-master' ), 'shortName' => esc_html__( 'XL', 'travel-master' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support('editor-styles'); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'travel_master_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 travel_master_content_width() { $content_width = $GLOBALS['content_width']; $sidebar_position = travel_master_layout(); switch ( $sidebar_position ) { case 'no-sidebar': $content_width = 1170; break; case 'left-sidebar': case 'right-sidebar': $content_width = 819; break; default: break; } if ( ! is_active_sidebar( 'sidebar-1' ) ) { $content_width = 1170; } /** * Filter Travel Master content width of the theme. * * @since Travel Master 1.0.0 * * @param int $content_width Content width in pixels. */ $GLOBALS['content_width'] = apply_filters( 'travel_master_content_width', $content_width ); } add_action( 'template_redirect', 'travel_master_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function travel_master_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'travel-master' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'travel-master' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Optional Sidebar', 'travel-master' ), 'id' => 'optional-sidebar', 'description' => esc_html__( 'Add widgets here.', 'travel-master' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'travel_master_widgets_init' ); if ( ! function_exists( 'travel_master_fonts_url' ) ) : /** * Register Google fonts * * @return string Google fonts URL for the theme. */ function travel_master_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Muli, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Muli font: on or off', 'travel-master' ) ) { $fonts[] = 'Muli:300,400,600,700'; } /* translators: If there are characters in your language that are not supported by Raleway, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Raleway font: on or off', 'travel-master' ) ) { $fonts[] = 'Raleway:300,400,500,600,700,800,900'; } $query_args = array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ); if ( $fonts ) { $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } endif; /** * Add preconnect for Google Fonts. * * @since Travel Master 1.0.0 * * @param array $urls URLs to print for resource hints. * @param string $relation_type The relation type the URLs are printed. * @return array $urls URLs to print for resource hints. */ function travel_master_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'travel-master-fonts', 'queue' ) && 'preconnect' === $relation_type ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } return $urls; } add_filter( 'wp_resource_hints', 'travel_master_resource_hints', 10, 2 ); /** * Enqueue scripts and styles. */ function travel_master_scripts() { $options = travel_master_get_theme_options(); // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'travel-master-fonts', travel_master_fonts_url(), array(), null ); // font-awesome wp_enqueue_style( 'travel-master-font-awesome', get_template_directory_uri() . '/assets/css/font-awesome' . travel_master_min() . '.css' ); // slick wp_enqueue_style( 'travel-master-slick', get_template_directory_uri() . '/assets/css/slick' . travel_master_min() . '.css' ); // slick theme wp_enqueue_style( 'travel-master-slick-theme', get_template_directory_uri() . '/assets/css/slick-theme' . travel_master_min() . '.css' ); // blocks wp_enqueue_style( 'travel-master-blocks', get_template_directory_uri() . '/assets/css/blocks' . travel_master_min() . '.css' ); wp_enqueue_style( 'travel-master-style', get_stylesheet_uri() ); // Load the html5 shiv. wp_enqueue_script( 'travel-master-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . travel_master_min() . '.js', array(), '20160412', true ); wp_enqueue_script( 'travel-master-navigation', get_template_directory_uri() . '/assets/js/navigation' . travel_master_min() . '.js', array(), '20151215', true ); $travel_master_l10n = array( 'quote' => travel_master_get_svg( array( 'icon' => 'quote-right' ) ), 'expand' => esc_html__( 'Expand child menu', 'travel-master' ), 'collapse' => esc_html__( 'Collapse child menu', 'travel-master' ), 'icon' => travel_master_get_svg( array( 'icon' => 'down', 'fallback' => true ) ), ); wp_localize_script( 'travel-master-navigation', 'travel_master_l10n', $travel_master_l10n ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_script( 'travel-master-jquery-slick', get_template_directory_uri() . '/assets/js/slick' . travel_master_min() . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'travel-master-custom', get_template_directory_uri() . '/assets/js/custom' . travel_master_min() . '.js', array( 'jquery' ), '20151215', true ); } add_action( 'wp_enqueue_scripts', 'travel_master_scripts' ); /** * Enqueue editor styles for Gutenberg * * @since Travel Master 1.0.0 */ function travel_master_block_editor_styles() { // Block styles. wp_enqueue_style( 'travel-master-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks' . travel_master_min() . '.css' ) ); // Add custom fonts. wp_enqueue_style( 'travel-master-fonts', travel_master_fonts_url(), array(), null ); } add_action( 'enqueue_block_editor_assets', 'travel_master_block_editor_styles' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load core file */ require get_template_directory() . '/inc/core.php'; /** * Load wp travel file */ if ( class_exists( 'WP_Travel' ) ) : require get_template_directory() . '/inc/wp-travel.php'; endif;