tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for custom logo. */ add_theme_support( 'custom-logo', array( 'header-text' => array( 'site-title', 'site-description' ), ) ); /* * 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( 'blog-expert-main-banner', 1370, 550, true ); // Set up the WordPress core custom header feature. add_theme_support( 'custom-header', apply_filters( 'blog_expert_custom_header_args', array( 'width' => 1400, 'height' => 380, 'flex-height' => true, 'header-text' => false, ) ) ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'top' => esc_html__( 'Top Nav', 'blog-expert' ), 'primary' => esc_html__( 'Primary', 'blog-expert' ), 'social' => esc_html__( 'Social Menu', 'blog-expert' ), ) ); /* * 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', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'blog_expert_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'audio', ) ); /** * Load Init for Hook files. */ require get_template_directory() . '/inc/hooks/hooks-init.php'; } endif; add_action( 'after_setup_theme', 'blog_expert_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 blog_expert_content_width() { $GLOBALS['content_width'] = apply_filters( 'blog_expert_content_width', 640 ); } add_action( 'after_setup_theme', 'blog_expert_content_width', 0 ); /** * function for google fonts */ if ( ! function_exists( 'blog_expert_fonts_url' ) ) : /** * Return fonts URL. * * @since 1.0.0 * @return string Fonts URL. */ function blog_expert_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Oswald, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Oswald font: on or off', 'blog-expert' ) ) { $fonts[] = 'Oswald:300,400,500,600,700'; } /* translators: If there are characters in your language that are not supported by Roboto Slab, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto Slab font: on or off', 'blog-expert' ) ) { $fonts[] = 'Roboto+Slab:100,300,400,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urldecode( implode( '|', $fonts ) ), 'subset' => urldecode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function blog_expert_scripts() { wp_enqueue_style('jquery-owlcarousel', get_template_directory_uri() . '/assets/libraries/owlcarousel/css/owl.carousel.css'); wp_enqueue_style('ionicons', get_template_directory_uri() . '/assets/libraries/ionicons/css/ionicons.min.css'); wp_enqueue_style('bootstrap', get_template_directory_uri() . '/assets/libraries/bootstrap/css/bootstrap.min.css'); wp_enqueue_style('sidr-nav', get_template_directory_uri() . '/assets/libraries/sidr/css/jquery.sidr.dark.css'); wp_enqueue_style('animate', get_template_directory_uri() . '/assets/libraries/animate/animate.css'); wp_enqueue_style('vertical', get_template_directory_uri() . '/assets/libraries/vertical/vertical.css'); wp_enqueue_style( 'blog-expert-style', get_stylesheet_uri() ); /*inline style*/ wp_add_inline_style( 'blog-expert-style', blog_expert_trigger_custom_css_action() ); $fonts_url = blog_expert_fonts_url(); if ( ! empty( $fonts_url ) ) { wp_enqueue_style( 'blog-expert-google-fonts', $fonts_url, array(), null ); } wp_enqueue_script( 'blog-expert-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true ); wp_enqueue_script( 'blog-expert-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); wp_enqueue_script('jquery-owlcarousel', get_template_directory_uri() . '/assets/libraries/owlcarousel/js/owl.carousel.min.js', array('jquery'), '', true); wp_enqueue_script('jquery-bootstrap', get_template_directory_uri() . '/assets/libraries/bootstrap/js/bootstrap.min.js', array('jquery'), '', true); wp_enqueue_script('jquery-match-height', get_template_directory_uri() . '/assets/libraries/jquery-match-height/js/jquery.matchHeight.min.js', array('jquery'), '', true); wp_enqueue_script('jquery-sidr', get_template_directory_uri() . '/assets/libraries/sidr/js/jquery.sidr.min.js', array('jquery'), '', true); wp_enqueue_script('theiaStickySidebar', get_template_directory_uri() . '/assets/libraries/theiaStickySidebar/theia-sticky-sidebar.min.js', array('jquery'), '', true); wp_enqueue_script('blog-expert-script', get_template_directory_uri() . '/assets/twp/js/custom-script.js', array('jquery'), '', 1); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'blog_expert_scripts' ); /** * Enqueue admin scripts and styles. */ function blog_expert_admin_scripts( $hook ) { if ( 'widgets.php' === $hook ) { wp_enqueue_media(); wp_enqueue_style( 'blog-expert-custom-widgets-style', get_template_directory_uri() . '/assets/twp/css/widgets.css', array(), '1.0.0' ); wp_enqueue_script( 'blog-expert-custom-widgets', get_template_directory_uri() . '/assets/twp/js/widgets.js', array( 'jquery' ), '1.0.0', true ); } } add_action( 'admin_enqueue_scripts', 'blog_expert_admin_scripts' ); /** * 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'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php';