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', 'benzin'), ) ); /** * 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', ) ); // 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' => 140, 'flex-width' => true, 'flex-height' => true, ) ); } add_action('after_setup_theme', 'benzin_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 benzin_content_width() { $GLOBALS['content_width'] = apply_filters('benzin_content_width', 1040); } add_action('after_setup_theme', 'benzin_content_width', 0); /** * Enqueue scripts and styles. */ function benzin_scripts() { wp_enqueue_style('benzin-style', get_stylesheet_uri(), array(), _S_VERSION); wp_enqueue_style('benzin-google-fonts', '//fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap'); wp_enqueue_style('benzin-bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.min.css'); wp_enqueue_style('benzin-font-awesome', get_template_directory_uri() . '/assets/css/font-awesome.css'); wp_enqueue_style('benzin-slick', get_template_directory_uri() . '/assets/css/slick.css'); wp_enqueue_style('benzin-animate', get_template_directory_uri() . '/assets/css/animate.css'); wp_enqueue_style('benzin-default', get_template_directory_uri() . '/assets/css/default.css'); wp_enqueue_style('benzin-main-style', get_template_directory_uri() . '/assets/css/style.css'); wp_enqueue_style('benzin-custom-style', get_template_directory_uri() . '/assets/css/custom.css'); wp_enqueue_script('benzin-bootstrap', get_template_directory_uri() . '/assets/js/bootstrap.min.js', array('jquery'), '20151215', true); wp_enqueue_script('benzin-slick-min', get_template_directory_uri() . '/assets/js/slick.min.js', array('jquery'), '20151215', true); wp_enqueue_script('benzin-wow', get_template_directory_uri() . '/assets/js/wow.min.js', array('jquery'), '20151215', true); wp_enqueue_script('benzin-skip-link-focus', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array('jquery'), '20151215', true); wp_enqueue_script('benzin-main', get_template_directory_uri() . '/assets/js/main.js', array('jquery'), '20151215', true); wp_enqueue_script('benzin-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), _S_VERSION, true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'benzin_scripts'); /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/hook/hook.php'; /** * Latest Post widget. */ require get_template_directory() . '/inc/widget/class-benzin-latest-post.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; require get_template_directory() . '/inc/customizer/customizer-config.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'; /** * TGM plugin activation */ require get_template_directory() . '/inc/tgmpa/class-tgm-plugin-activation.php'; /** * Theme required plugin */ require get_template_directory() . '/inc/tgmpa/recommended-plugins.php'; /** * Load Jetpack compatibility file. */ if (defined('JETPACK__VERSION')) { require get_template_directory() . '/inc/jetpack.php'; }