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( 'bizprime-slider-image', 2100, 1400, true ); add_image_size( 'bizprime-medium', 400, 460, true ); //blog,team add_image_size( 'bizprime-header-image', 1400, 380, true ); //blog,team // Set up the WordPress core custom header feature. add_theme_support( 'custom-header', apply_filters( 'bizprime_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( 'primary' => esc_html__( 'Primary', 'bizprime' ), 'social' => esc_html__( 'Social Menu', 'bizprime' ), ) ); /* * 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( 'bizprime_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); /*woocommerce support*/ add_theme_support( 'woocommerce' ); /** * Load Init for Hook files. */ require get_template_directory() . '/inc/hooks/hooks-init.php'; } endif; add_action( 'after_setup_theme', 'bizprime_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 bizprime_content_width() { $GLOBALS['content_width'] = apply_filters( 'bizprime_content_width', 640 ); } add_action( 'after_setup_theme', 'bizprime_content_width', 0 ); /*ocdi finctions*/ if (!function_exists('bizprime_ocdi_files')) : /** * OCDI files. * * @since 1.0.0 * * @return array Files. */ function bizprime_ocdi_files() { return array( array( 'import_file_name' => esc_html__( 'Theme Demo Content', 'bizprime' ), 'local_import_file' => trailingslashit( get_template_directory() ) . 'demo-data/bizprime.xml', 'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'demo-data/bizprime.wie', 'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'demo-data/bizprime.dat', ), ); } endif; add_filter( 'pt-ocdi/import_files', 'bizprime_ocdi_files'); /** * function for google fonts */ if ( ! function_exists( 'bizprime_fonts_url' ) ) : /** * Return fonts URL. * * @since 1.0.0 * @return string Fonts URL. */ function bizprime_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', 'Roboto font: on or off', 'bizprime' ) ) { $fonts[] = 'Roboto:100,300,400,400i,500,700'; } /* 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', 'Poppins font: on or off', 'bizprime' ) ) { $fonts[] = 'Poppins:300,400,500,600,700'; } 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 bizprime_scripts() { wp_enqueue_style('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('magnific-popup', get_template_directory_uri() . '/assets/libraries/magnific-popup/magnific-popup.css'); wp_enqueue_style('bootstrap', get_template_directory_uri() . '/assets/libraries/bootstrap/css/bootstrap.min.css'); wp_enqueue_style('vertical', get_template_directory_uri() . '/assets/libraries/vertical/vertical.css'); wp_enqueue_style( 'bizprime-style', get_stylesheet_uri() ); /*inline style*/ wp_add_inline_style( 'bizprime-style', bizprime_trigger_custom_css_action() ); $fonts_url = bizprime_fonts_url(); if ( ! empty( $fonts_url ) ) { wp_enqueue_style( 'bizprime-google-fonts', $fonts_url, array(), null ); } wp_enqueue_script( 'bizprime-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true ); wp_enqueue_script( 'bizprime-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-magnific-popup', get_template_directory_uri() . '/assets/libraries/magnific-popup/jquery.magnific-popup.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-isotope', get_template_directory_uri() . '/assets/libraries/isotope/isotope.pkgd.min.js', array('jquery'), '', true); wp_enqueue_script('bizprime-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', 'bizprime_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';