__( 'Small', 'rockfield' ), 'shortName' => __( 'S', 'rockfield' ), 'size' => 15, 'slug' => 'small', ), array( 'name' => __( 'Normal', 'rockfield' ), 'shortName' => __( 'M', 'rockfield' ), 'size' => 18, 'slug' => 'normal', ), array( 'name' => __( 'Large', 'rockfield' ), 'shortName' => __( 'L', 'rockfield' ), 'size' => 25.92, 'slug' => 'large', ), array( 'name' => __( 'Huge', 'rockfield' ), 'shortName' => __( 'XL', 'rockfield' ), 'size' => 31.104, 'slug' => 'huge', ), ) ); // Add child theme editor color pallete to match Sass-map variables in `_config-child-theme-deep.scss`. add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Primary', 'rockfield' ), 'slug' => 'primary', 'color' => '#222222', ), array( 'name' => __( 'Secondary', 'rockfield' ), 'slug' => 'secondary', 'color' => '#116821', ), array( 'name' => __( 'Dark Gray', 'rockfield' ), 'slug' => 'foreground-dark', 'color' => '#111111', ), array( 'name' => __( 'Gray', 'rockfield' ), 'slug' => 'foreground', 'color' => '#444444', ), array( 'name' => __( 'Light Gray', 'rockfield' ), 'slug' => 'foreground-light', 'color' => '#757575', ), array( 'name' => __( 'Lighter Gray', 'rockfield' ), 'slug' => 'background-dark', 'color' => '#E0E0E0', ), array( 'name' => __( 'Subtle Gray', 'rockfield' ), 'slug' => 'background-light', 'color' => '#F0F0F0', ), array( 'name' => __( 'White', 'rockfield' ), 'slug' => 'background', 'color' => '#FFFFFF', ), ) ); } endif; add_action( 'after_setup_theme', 'rockfield_setup', 12 ); /** * Filter the content_width in pixels, based on the child-theme's design and stylesheet. */ function rockfield_content_width() { return 750; } add_filter( 'varia_content_width', 'rockfield_content_width' ); /** * Add Google webfonts, if necessary * * - See: http://themeshaper.com/2014/08/13/how-to-add-google-fonts-to-wordpress-themes/ */ function rockfield_fonts_url() { $fonts_url = ''; /* 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. */ $raleway = esc_html_x( 'on', 'Raleway font: on or off', 'rockfield' ); /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $lora = esc_html_x( 'on', 'Lora font: on or off', 'rockfield' ); if ( 'off' !== $raleway || 'off' !== $lora ) { $font_families = array(); if ( 'off' !== $raleway ) { $font_families[] = 'Raleway:400,400i,700,700i'; } if ( 'off' !== $lora ) { $font_families[] = 'Lora:400,400i,700,700i'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function rockfield_scripts() { // enqueue Google fonts wp_enqueue_style( 'rockfield-fonts', rockfield_fonts_url(), array(), null ); // dequeue parent styles wp_dequeue_style( 'varia-style' ); // enqueue child styles wp_enqueue_style('rockfield-style', get_stylesheet_uri(), array(), wp_get_theme()->get( 'Version' )); // enqueue child RTL styles wp_style_add_data( 'rockfield-style', 'rtl', 'replace' ); // enqueue header spacing JS wp_enqueue_script('rockfield-fixed-header-spacing', get_stylesheet_directory_uri() . '/js/fixed-header-spacing.js', array(), wp_get_theme()->get( 'Version' ), true ); } add_action( 'wp_enqueue_scripts', 'rockfield_scripts', 99 ); /** * Enqueue theme styles for the block editor. */ function rockfield_editor_styles() { // Enqueue Google fonts in the editor wp_enqueue_style( 'rockfield-editor-fonts', rockfield_fonts_url(), array(), null ); } add_action( 'enqueue_block_editor_assets', 'rockfield_editor_styles' );