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( 'menu-1' => esc_html__( 'Primary', 'the-angle' ), ) ); /* * 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( 'the_angle_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // 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' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } endif; add_action( 'after_setup_theme', 'the_angle_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 the_angle_content_width() { $GLOBALS['content_width'] = apply_filters( 'the_angle_content_width', 640 ); } add_action( 'after_setup_theme', 'the_angle_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function the_angle_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'the-angle' ), 'id' => 'the-angle-sidebar', 'description' => esc_html__( 'Add widgets here.', 'the-angle' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'the-angle' ), 'id' => 'the-angle-sidebar-right', 'description' => esc_html__( 'Add widgets here.', 'the-angle' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'the-angle' ), 'id' => 'the-angle-sidebar-left', 'description' => esc_html__( 'Add widgets here.', 'the-angle' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__('Menu Cart','the-angle'), 'id' => 'the-angle-menu-cart', 'description' => esc_html__('Appears in the buttom of footer area','the-angle'), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__('Footer One','the-angle'), 'id' => 'the-angle-footer-one', 'description' => esc_html__('Appears in the buttom of footer area','the-angle'), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__('Footer Two','the-angle'), 'id' => 'the-angle-footer-two', 'description' => esc_html__('Appears in the buttom of footer area','the-angle'), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__('Footer Three','the-angle'), 'id' => 'the-angle-footer-three', 'description' => esc_html__('Appears in the buttom of footer area','the-angle'), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'the_angle_widgets_init' ); /** * Enqueue scripts and styles. */ function the_angle_scripts() { wp_enqueue_style( 'the-angle-style', get_stylesheet_uri() ); $the_angle_font_query_args = array('family' => 'Lato:100,100i,300,300i,400,400i,700,700i,900,900i'); wp_enqueue_style('the-angle-google-fonts', add_query_arg($the_angle_font_query_args, "//fonts.googleapis.com/css")); wp_enqueue_style('animate',get_template_directory_uri().'/js/animate/animate.css'); wp_enqueue_style('owl-carousel',get_template_directory_uri().'/js/owl-carousel/owl.carousel.css'); wp_enqueue_style('fancybox',get_template_directory_uri().'/js/fancybox/jquery.fancybox.css'); wp_enqueue_style( 'woocommerce-style', get_template_directory_uri() . '/woocommerce/woocommerce-style.css'); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/js/font-awesome/css/font-awesome.min.css', array(), '4.6.3' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/js/font-awesome/css/font-awesome-animation.min.css', array(), '4.6.3' ); wp_enqueue_style('animate',get_template_directory_uri().'/js/animate/wow.min.js'); wp_enqueue_script( 'the-angle-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true ); wp_enqueue_script('jquery-counterup', get_template_directory_uri() . '/js/counterup/js/jquery.counterup.js', array( 'jquery' ), '1.0', true ); wp_enqueue_script('jquery-counterup-min', get_template_directory_uri() . '/js/counterup/js/jquery.counterup.min.js', array( 'jquery' ), '1.0', true ); wp_enqueue_script('owl-carousel',get_template_directory_uri().'/js/owl-carousel/owl.carousel.js',array('jquery')); wp_enqueue_script( 'the-angle-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); wp_enqueue_script('the-angle-custom-js',get_template_directory_uri().'/js/custom.js', array('jquery'), '',true); wp_enqueue_script('fancybox',get_template_directory_uri().'/js/fancybox/jquery.fancybox.js'); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'the_angle_scripts' ); /** * 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'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /** * Load Custom functions file. */ require get_template_directory() . '/inc/the-angle-functions.php'; /** Recent Post Widget **/ require get_template_directory() . '/inc/widgets/widgets-recent-post.php'; /** Widget Fields **/ require get_template_directory() . '/inc/widgets/widgets-field.php'; /** * Load Custom Customizer file. */ require get_template_directory() . '/inc/the-angle-customizer.php'; /** Metaboxe **/ require get_template_directory() . '/inc/the-angle-metabox.php'; /** * Woocommerce Function */ require get_template_directory() . '/woocommerce/woocommerce-function.php'; /** Customizer Classes **/ require get_template_directory() . '/inc/customizer-classes.php';