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' ); add_image_size( 'elsie-900x9999', 900, 9999 ); add_image_size( 'elsie-500x9999', 500, 9999 ); add_image_size( 'elsie-500x500', 500, 500, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary-menu' => esc_html__( 'Primary', 'elsie' ), 'top-menu' => esc_html__( 'Top bar menu', 'elsie' ), ) ); /* * 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', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'elsie_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' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); /** * Editor font sizes */ add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'Small', 'elsie' ), 'shortName' => esc_html_x( 'S', 'Font size', 'elsie' ), 'size' => 'var(--font-size-sm)', 'slug' => 'small', ), array( 'name' => esc_html__( 'Normal', 'elsie' ), 'shortName' => esc_html_x( 'N', 'Font size', 'elsie' ), 'size' => 'var(--font-size-md)', 'slug' => 'normal', ), array( 'name' => esc_html__( 'Large', 'elsie' ), 'shortName' => esc_html_x( 'L', 'Font size', 'elsie' ), 'size' => 'var(--font-size-lg)', 'slug' => 'large', ), array( 'name' => esc_html__( 'Larger', 'elsie' ), 'shortName' => esc_html_x( 'XL', 'Font size', 'elsie' ), 'size' => 'var(--font-size-xl)', 'slug' => 'larger', ), array( 'name' => esc_html__( 'Extra large', 'elsie' ), 'shortName' => esc_html_x( 'XXL', 'Font size', 'elsie' ), 'size' => 'var(--font-size-2xl)', 'slug' => 'extra-large', ), array( 'name' => esc_html__( 'Huge', 'elsie' ), 'shortName' => esc_html_x( 'XXXL', 'Font size', 'elsie' ), 'size' => 'var(--font-size-3xl)', 'slug' => 'huge', ), array( 'name' => esc_html__( 'Gigantic', 'elsie' ), 'shortName' => esc_html_x( 'XXXXL', 'Font size', 'elsie' ), 'size' => 'var(--font-size-4xl)', 'slug' => 'gigantic', ), ) ); /** * Block templates */ add_theme_support( 'block-templates' ); /** * Wide alignments */ add_theme_support( 'align-wide' ); /** * Starter content */ add_theme_support( 'starter-content', array( 'theme_mods' => array( 'featured_boxes_front_page' => true, ), ) ); } endif; add_action( 'after_setup_theme', 'elsie_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 elsie_content_width() { $GLOBALS['content_width'] = apply_filters( 'elsie_content_width', 1140 ); // phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedVariableFound } add_action( 'after_setup_theme', 'elsie_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function elsie_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'elsie' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'elsie' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); $footer_widgets_layout = get_theme_mod( 'footer_widgets_layout', 'columns3' ); switch ( $footer_widgets_layout ) { case 'columns3': $widget_areas = 3; break; case 'columns1': $widget_areas = 1; break; case 'columns2': $widget_areas = 2; break; case 'columns4': $widget_areas = 4; break; default: return; } for ( $i = 1; $i <= $widget_areas; $i++ ) { register_sidebar( array( 'name' => /* translators: %s: footer area number */ sprintf( esc_html__( 'Footer area %s', 'elsie' ), $i ), 'id' => 'footer-' . $i, 'description' => esc_html__( 'Add widgets here.', 'elsie' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } } add_action( 'widgets_init', 'elsie_widgets_init' ); /** * Enqueue scripts and styles. */ function elsie_scripts() { wp_enqueue_style( 'elsie-fonts', elsie_generate_fonts_url(), array(), ELSIE_VERSION ); wp_enqueue_style( 'elsie-style', get_stylesheet_uri(), array(), ELSIE_VERSION ); wp_style_add_data( 'elsie-style', 'rtl', 'replace' ); wp_enqueue_style( 'elsie-style-min', get_template_directory_uri() . '/assets/css/styles.min.css', array(), ELSIE_VERSION ); wp_enqueue_script( 'elsie-custom', get_template_directory_uri() . '/assets/js/custom.min.js', array(), ELSIE_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } $layout = elsie_blog_layout(); if ( 'masonry' === $layout ) { wp_enqueue_script('jquery'); wp_enqueue_script('jquery-masonry'); } } add_action( 'wp_enqueue_scripts', 'elsie_scripts' ); /** * Onboarding */ require get_template_directory() . '/inc/onboarding/class_elsie_install_plugins.php'; require get_template_directory() . '/inc/onboarding/class_elsie_theme_page.php'; /** * Header class */ require_once get_template_directory() . '/inc/class-elsie-header.php'; /** * Footer class */ require_once get_template_directory() . '/inc/class-elsie-footer.php'; /** * 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'; /** * 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/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /** * Load WooCommerce compatibility file. */ if ( class_exists( 'WooCommerce' ) ) { require get_template_directory() . '/inc/woocommerce.php'; } /** * Page metabox */ require get_template_directory() . '/inc/class-elsie-page-metabox.php'; /** * Single posts and pages */ require get_template_directory() . '/inc/class-elsie-single-post-page.php'; /** * Posts loop */ require get_template_directory() . '/inc/class-elsie-loop-post.php'; /** * SVG icons */ require get_template_directory() . '/inc/class-elsie-svg-icons.php'; /** * Hero */ require get_template_directory() . '/inc/class-elsie-hero.php'; /** * Breadcrumbs */ require get_template_directory() . '/inc/class-elsie-breadcrumb-trail.php'; /** * Editor */ require get_template_directory() . '/inc/editor.php'; require get_template_directory() . '/inc/block-styles.php'; /** * Custom CSS */ require get_template_directory() . '/inc/custom-css.php'; /** * Autoloader */ require_once get_template_directory() . '/vendor/autoload.php';