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 http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'bloger' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'bloger_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // bloger_setup /** * Cropping image to a required size */ add_image_size('bloger-post-image-size', 940, 627, true); // post image size add_image_size('bloger-homeslider-image-size', 1170, 500, true); // post image home slider size add_image_size('bloger-post-image-withsidebar', 1170, 697, true); // home page with sidebar add_image_size('bloger-about-us-page-img', 840, 840, true); // home page with sidebar add_image_size('bloger-grid-view-img', 300, 200, true); // home page with sidebar add_image_size ('bloger-feature-page-img', 292, 169); // feature page image display in sidebar and footer sidebar add_image_size ('bloger-recent-post-thumb', 480, 300, true); add_image_size('bloger-feature-post-thumb' , 290, 180, true); add_action( 'after_setup_theme', 'bloger_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 bloger_content_width() { $GLOBALS['content_width'] = apply_filters( 'bloger_content_width', 640 ); } add_action( 'after_setup_theme', 'bloger_content_width', 0 ); //adding class to body boxed/full-width function bloger_bodyclass($classes){ $classes[]= esc_attr(get_theme_mod('bloger_layout_option')); return $classes; } add_filter('body_class','bloger_bodyclass' ); /** * Enqueue scripts and styles. */ function bloger_scripts() { $query_args = array('family' => 'Playfair+Display:400,300,700,serif|Raleway:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic,sans-serif|Lato:400,300,700,900,100,sans-serif|Merriweather:400,300,700,900,100,Arial,Helvetica,sans-serif'); wp_enqueue_style('google-fonts', add_query_arg($query_args, "//fonts.googleapis.com/css")); wp_enqueue_style('bloger-style', get_stylesheet_uri() ); wp_enqueue_style( 'bloger-keyboard-css', get_template_directory_uri() . '/css/keyboard.css'); wp_enqueue_style('font-awesome',get_template_directory_uri().'/css/fawesome/css/font-awesome.css'); wp_enqueue_style('bloger-responsive', get_template_directory_uri() . '/css/responsive.css', array() ); wp_enqueue_style('owl-carousel',get_template_directory_uri().'/js/owl-carousel/owl.carousel.css'); wp_enqueue_script('owl-carousel',get_template_directory_uri().'/js/owl-carousel/owl.carousel.js',array('jquery')); wp_enqueue_script('theia-sticky-sidebar', get_template_directory_uri().'/js/theia-sticky-sidebar.js',array('jquery')); wp_enqueue_script('navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script('bloger-custom', get_template_directory_uri() . '/js/custom.js', array('jquery','owl-carousel','theia-sticky-sidebar'), '4.2.2', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'bloger_scripts' ); function bloger_custom_customize_enqueue() { wp_enqueue_script( 'bloger-custom-customize', get_template_directory_uri() . '/js/customizer-js.js', array( 'jquery', 'customize-controls' ), false ); } add_action( 'customize_controls_enqueue_scripts', 'bloger_custom_customize_enqueue' ); /** * Enqueue editor styles for Gutenberg */ function bloger_lite_editor_styles() { $query_args = array('family' => 'Playfair+Display:400,300,700,serif|Raleway:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic,sans-serif|Lato:400,300,700,900,100,sans-serif|Merriweather:400,300,700,900,100,Arial,Helvetica,sans-serif'); wp_enqueue_style( 'bloger-google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ) ); wp_enqueue_style( 'bloger-editor-style', get_template_directory_uri() . '/css/style-editor.css' ); } add_action( 'enqueue_block_editor_assets', 'bloger_lite_editor_styles' ); /** * 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.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Bloger function */ require get_template_directory() . '/inc/bloger-functions.php'; /** * Load customizer line */ require get_template_directory() . '/inc/bloger-customizer.php'; /** * Load Welcome Page */ require get_template_directory() . '/inc/welcome/welcome-config.php'; /** * Load bloger widgets in site */ require get_template_directory() . '/inc/bloger-widgets.php'; // Enable the use of shortcodes in text widgets. add_filter( 'widget_text', 'do_shortcode' ); /** * Dynamic css for template color */ require get_template_directory() . '/css/style.php'; /** * Registers an editor stylesheet for the theme. */ function bloger_add_editor_styles() { add_editor_style( 'css/custom-editor-style.css' ); } add_action( 'admin_init', 'bloger_add_editor_styles' );