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 one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'daily-construction' ), ) ); // Enable support for custom logo. add_theme_support( 'custom-logo' , array( 'height' =>45, 'width' =>45, 'flex-height' =>true, 'flex-width' =>true, )); /* * 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( 'daily_construction_custom_background_args', array( 'default-color' => 'fff', 'default-image' => '', ) ) ); // 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. */ $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; add_editor_style( array( '/assets/css/editor-style' . $min . '.css', daily_construction_fonts_url() ) ); // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Tan', 'daily-construction' ), 'slug' => 'tan', 'color' => '#E6DBAD', ), array( 'name' => esc_html__( 'Yellow', 'daily-construction' ), 'slug' => 'yellow', 'color' => '#FDE64B', ), array( 'name' => esc_html__( 'Orange', 'daily-construction' ), 'slug' => 'orange', 'color' => '#ED7014', ), array( 'name' => esc_html__( 'Red', 'daily-construction' ), 'slug' => 'red', 'color' => '#D0312D', ), array( 'name' => esc_html__( 'Pink', 'daily-construction' ), 'slug' => 'pink', 'color' => '#b565a7', ), array( 'name' => esc_html__( 'Purple', 'daily-construction' ), 'slug' => 'purple', 'color' => '#A32CC4', ), array( 'name' => esc_html__( 'Blue', 'daily-construction' ), 'slug' => 'blue', 'color' => '#3A43BA', ), array( 'name' => esc_html__( 'Green', 'daily-construction' ), 'slug' => 'green', 'color' => '#3BB143', ), array( 'name' => esc_html__( 'Brown', 'daily-construction' ), 'slug' => 'brown', 'color' => '#231709', ), array( 'name' => esc_html__( 'Grey', 'daily-construction' ), 'slug' => 'grey', 'color' => '#6C626D', ), array( 'name' => esc_html__( 'Black', 'daily-construction' ), 'slug' => 'black', 'color' => '#000000', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'daily-construction' ), 'shortName' => esc_html__( 'S', 'daily-construction' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'daily-construction' ), 'shortName' => esc_html__( 'M', 'daily-construction' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'daily-construction' ), 'shortName' => esc_html__( 'L', 'daily-construction' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'daily-construction' ), 'shortName' => esc_html__( 'XL', 'daily-construction' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support('editor-styles'); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'daily_construction_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 daily_construction_content_width() { $GLOBALS['content_width'] = apply_filters( 'daily_construction_content_width', 640 ); } add_action( 'after_setup_theme', 'daily_construction_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function daily_construction_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'daily-construction' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'daily-construction' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'daily_construction_widgets_init' ); /** * Register custom fonts. */ function daily_construction_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* 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. */ if ( 'off' !== _x( 'on', 'Lora: on or off', 'daily-construction' ) ) { $fonts[] = 'Lora:400,600,700'; } if ( 'off' !== _x( 'on', 'Space Grotesk: on or off', 'daily-construction' ) ) { $fonts[] = 'Space Grotesk:300,400,500,600,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function daily_construction_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $fonts_url = daily_construction_fonts_url(); $primary_color = daily_construction_get_option( 'primary_color' ); if ( ! empty( $fonts_url ) ) { wp_enqueue_style( 'daily-construction-google-fonts', $fonts_url, array(), null ); } wp_enqueue_style( 'fontawesome-all', get_template_directory_uri() . '/assets/css/all' . $min . '.css', '', '4.7.0' ); wp_enqueue_style( 'slick-theme-css', get_template_directory_uri() .'/assets/css/slick-theme' . $min . '.css', '', 'v2.2.0'); wp_enqueue_style( 'slick-css', get_template_directory_uri() .'/assets/css/slick' . $min . '.css', '', 'v1.8.0'); wp_enqueue_style( 'daily-construction-blocks', get_template_directory_uri() . '/assets/css/blocks' . $min . '.css' ); wp_enqueue_style( 'daily-construction-style', get_stylesheet_uri() ); wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/js/slick' . $min . '.js', array('jquery'), '2017417', true ); wp_enqueue_script( 'jquery-match-height', get_template_directory_uri() . '/assets/js/jquery.matchHeight' . $min . '.js', array('jquery'), '2017417', true ); wp_enqueue_script( 'daily-construction-navigation', get_template_directory_uri() . '/assets/js/navigation' . $min . '.js', array(), '20151215', true ); wp_enqueue_script( 'daily-construction-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . $min . '.js', array(), '20151215', true ); wp_enqueue_script( 'daily-construction-custom-js', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array('jquery'), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'daily_construction_scripts' ); /** * Enqueue editor styles for Gutenberg * * @since Daily Construction 1.0.0 */ function daily_construction_block_editor_styles() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; // Block styles. wp_enqueue_style( 'daily-construction-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks' . $min . '.css' ) ); // Add custom fonts. wp_enqueue_style( 'daily-construction-fonts', daily_construction_fonts_url(), array(), null ); } add_action( 'enqueue_block_editor_assets', 'daily_construction_block_editor_styles' ); function daily_construction_category_title( $title ) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'get_the_archive_title', 'daily_construction_category_title' ); /** * Load init. */ require_once get_template_directory() . '/inc/init.php'; /** * TGM plugin additions. */ require get_template_directory() . '/inc/tgm-plugin/tgm-hook.php';