tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); // This theme uses wp_nav_menu() in four locations. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary menu', 'kawi' ), 'social-menu' => esc_html__( 'Main menu social icons', 'kawi' ), 'footer-menu' => esc_html__( 'Footer menu', 'kawi' ), 'footer-social-menu' => esc_html__( 'Footer social icons', 'kawi' ), ) ); /* * 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', ) ); // Add support for the custom header feature. add_theme_support( 'custom-header', apply_filters( 'kawi_custom_header_args', array( 'default-image' => '', 'default-text-color' => '3d4852', 'width' => 2000, 'height' => 1000, 'flex-height' => false, ) ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'kawi_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 50, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); // Register new image sizes add_image_size( 'kawi-featured-full', 2000, 1000, array( 'center', 'top' ) ); add_image_size( 'kawi-featured-large', 1600, 800, array( 'center', 'top' ) ); add_image_size( 'kawi-featured', 992, 496, array( 'center', 'top' ) ); add_image_size( 'kawi-featured-small', 576, 288, array( 'center', 'top' ) ); // Add styles on the editor. add_theme_support( 'editor-styles' ); add_editor_style( array( 'editor-style.css', kawi_slug_fonts_url() ) ); // Gutenberg supports add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => __( 'Small', 'kawi' ), 'size' => 14, 'slug' => 'small' ), array( 'name' => __( 'Normal', 'kawi' ), 'size' => 16, 'slug' => 'normal' ), array( 'name' => __( 'Large', 'kawi' ), 'size' => 32, 'slug' => 'large' ), array( 'name' => __( 'Huge', 'kawi' ), 'size' => 44, 'slug' => 'huge' ) ) ); add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Darkest grey', 'kawi' ), 'slug' => 'darkest-grey', 'color' => '#3d4852', ), array( 'name' => __( 'Dark grey', 'kawi' ), 'slug' => 'dark-grey', 'color' => '#58636F', ), array( 'name' => __( 'Grey', 'kawi' ), 'slug' => 'grey', 'color' => '#677783', ), array( 'name' => __( 'Light grey', 'kawi' ), 'slug' => 'light-grey', 'color' => '#bac6d3', ), array( 'name' => __( 'Lightest grey', 'kawi' ), 'slug' => 'lightest-grey', 'color' => '#f1f5f8', ), ) ); } endif; add_filter( 'image_size_names_choose', 'kawi_custom_sizes' ); /** * Registers new images sizes for the admin area * * @param array $sizes Registered image sizes */ function kawi_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'kawi-featured-full' => __( 'Full screen header image size', 'kawi' ), 'kawi-featured-large' => __( 'Boxed header image size', 'kawi' ), 'kawi-featured' => __( 'Featured image size on listing pages', 'kawi' ), 'kawi-featured-small' => __( 'Smaller featured image size', 'kawi' ), ) ); } /** * Gets the URL to the Google Fonts */ function kawi_slug_fonts_url() { $fonts_url = ''; $font_families = array( 'Oxygen+Mono' ); /* 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. */ $muli = _x( 'on', 'Muli font: on or off', 'kawi' ); if ( 'off' !== $muli ) { $font_families[] = 'Muli:400,400i,700'; } $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ), 'https://fonts.googleapis.com/css' ); return esc_url_raw( $fonts_url ); } add_action( 'after_setup_theme', 'kawi_content_width', 0 ); /** * 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 kawi_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( 'kawi_content_width', 1600 ); } add_action( 'widgets_init', 'kawi_widgets_init' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function kawi_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'kawi' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Widgets added here will appear in a sidebar you can place on the left, right or bottom via a setting in the customizer. If no widgets are added, a one column layout will be used for all pages and posts.', 'kawi' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'wp_enqueue_scripts', 'kawi_scripts' ); /** * Enqueue scripts and styles. */ function kawi_scripts() { wp_enqueue_style( 'kawi-fonts', kawi_slug_fonts_url(), array(), null ); wp_enqueue_style( 'kawi-styles', get_stylesheet_uri() ); wp_enqueue_script( 'kawi-scripts', get_template_directory_uri() . '/js/main.js', array(), null, false ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; }