tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'responsive-embeds' ); add_theme_support( 'register_block_pattern' ); add_theme_support( 'register_block_style' ); /* * 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( 'academic-category-image', 450, 338, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'academic' ), 'login' => esc_html__( 'Login', 'academic' ), ) ); /* * 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( 'academic_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' ), ) ); /* * 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.css', academic_fonts_url() ) ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); // Make theme woocommerce ready add_theme_support( 'woocommerce' ); if ( class_exists( 'WooCommerce' ) ) { global $woocommerce; if( version_compare( $woocommerce->version, '3.0.0', ">=" ) ) { add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } } // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Blue', 'academic' ), 'slug' => 'blue', 'color' => '#347FE1', ), array( 'name' => esc_html__( 'Yellow', 'academic' ), 'slug' => 'yellow', 'color' => '#ffe800', ), array( 'name' => esc_html__( 'Black', 'academic' ), 'slug' => 'black', 'color' => '#333', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'academic' ), 'shortName' => esc_html__( 'S', 'academic' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'academic' ), 'shortName' => esc_html__( 'M', 'academic' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'academic' ), 'shortName' => esc_html__( 'L', 'academic' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'academic' ), 'shortName' => esc_html__( 'XL', 'academic' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support('editor-styles'); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'academic_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 academic_content_width() { $GLOBALS['content_width'] = apply_filters( 'academic_content_width', 640 ); } add_action( 'after_setup_theme', 'academic_content_width', 0 ); if ( ! function_exists( 'academic_fonts_url' ) ) : /** * Register Google fonts * * @return string Google fonts URL for the theme. */ function academic_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'academic' ) ) { $fonts[] = 'Open Sans:300,400,600,700'; } /* translators: If there are characters in your language that are not supported by Montserrat Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'academic' ) ) { $fonts[] = 'Montserrat:400,700'; } /* translators: If there are characters in your language that are not supported by Courgette, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Courgette font: on or off', 'academic' ) ) { $fonts[] = 'Courgette:400'; } /* translators: If there are characters in your language that are not supported by Roboto, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'academic' ) ) { $fonts[] = 'Roboto:400,500,300'; } /* 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', 'academic' ) ) { $fonts[] = 'Raleway:400,100,300,500,600,700'; } /* translators: If there are characters in your language that are not supported by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'academic' ) ) { $fonts[] = 'Poppins:400,500,600'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function academic_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'academic-fonts', wptt_get_webfont_url( academic_fonts_url() ), array(), null ); // Add font awesome css wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/plugins/css/font-awesome' . $min . '.css', array(), '4.6.3' ); // Add slick css wp_enqueue_style( 'slick', get_template_directory_uri() . '/assets/plugins/css/slick' . $min . '.css', array(), '1.6.0' ); // Add slick theme css wp_enqueue_style( 'slick-theme', get_template_directory_uri() . '/assets/plugins/css/slick-theme' . $min . '.css', array(), '1.6.0' ); // Add sidr light css wp_enqueue_style( 'jquery-sidr-light', get_template_directory_uri() . '/assets/plugins/css/jquery-sidr-light' . $min . '.css', array(), '' ); // blocks wp_enqueue_style( 'academic-blocks', get_template_directory_uri() . '/assets/css/blocks.min.css', array(), '' ); // Theme stylesheet. wp_enqueue_style( 'academic-style', get_stylesheet_uri() ); // Load sidr wp_enqueue_script( 'jquery-sidr', get_template_directory_uri() . '/assets/plugins/js/jquery-sidr' . $min . '.js', array( 'jquery' ), '', true ); // Load slick jquery wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/plugins/js/slick' . $min . '.js', array(), '1.6.0', true ); // Load smoothscroll wp_enqueue_script( 'smoothscroll', get_template_directory_uri() . '/assets/plugins/js/smoothscroll' . $min . '.js', array(), '0.9.9', true ); // Load waypoints wp_enqueue_script( 'waypoints', get_template_directory_uri() . '/assets/plugins/js/waypoints' . $min . '.js', array(), '4.0.0',true ); // Load custom js wp_enqueue_script( 'academic-custom', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array(), '',true ); // Load animation js wp_enqueue_script( 'academic-animation', get_template_directory_uri() . '/assets/js/animation' . $min . '.js', array(), '',true ); wp_enqueue_script( 'academic-navigation', get_template_directory_uri() . '/assets/js/navigation' . $min . '.js', array(), '20151215', true ); // Load the html5 shiv. wp_enqueue_script( 'academic-html5', get_template_directory_uri() . '/assets/js/html5' . $min . '.js', array(), '3.7.3' ); wp_script_add_data( 'academic-html5', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'academic-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . $min . '.js', array(), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'academic_scripts' ); /** * Enqueue editor styles for Gutenberg * * @since Academic 1.0.0 */ function academic_block_editor_styles() { // Block styles. wp_enqueue_style( 'academic-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks.min.css', array(), '' ) ); // Add custom fonts. wp_enqueue_style( 'academic-fonts', wptt_get_webfont_url( academic_fonts_url() ), array(), null ); } add_action( 'enqueue_block_editor_assets', 'academic_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'; /* *Register gallery thumbnail size to media. */ function academic_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'academic-category-image' => esc_html__( 'Gallery Thumbnail', 'academic' ), ) ); } add_filter( 'image_size_names_choose', 'academic_custom_sizes' );