50, 'width' => 150, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'bizgrowth' ), 'footer' => __( 'Footer Menu', 'bizgrowth' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } endif; // bizgrowth_setup add_action( 'after_setup_theme', 'bizgrowth_setup' ); // Set the word limit of post content function bizgrowth_content($limit) { $content = explode(' ', get_the_excerpt(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/\[.+\]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } function bizgrowth_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'bizgrowth' ), 'description' => __( 'Appears on blog page sidebar', 'bizgrowth' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'bizgrowth_widgets_init' ); function bizgrowth_font_url(){ $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto Condensed, trsnalate this to off, do not * translate into your own language. */ $roboto_condensed = _x('on','roboto_condensed:on or off','bizgrowth'); /* Translators: If there are any character that are not * supported by PT Sans, trsnalate this to off, do not * translate into your own language. */ $pt_sans = _x('on','pt_sans:on or off','bizgrowth'); if('off' !== $roboto_condensed || 'off' !== $pt_sans ){ $font_family = array(); if('off' !== $roboto_condensed){ $font_family[] = 'Roboto Condensed:300,400,600'; } if('off' !== $pt_sans){ $font_family[] = 'PT Sans:400,600'; } $query_args = array( 'family' => urlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); } return $font_url; } function bizgrowth_scripts() { wp_enqueue_style('bizgrowth-font', bizgrowth_font_url(), array()); wp_enqueue_style( 'bizgrowth-basic-style', get_stylesheet_uri() ); wp_enqueue_style( 'bizgrowth-editor-style', get_template_directory_uri()."/editor-style.css" ); wp_enqueue_style( 'nivo-style', get_template_directory_uri()."/css/nivo-slider.css" ); wp_enqueue_style( 'bizgrowth-responsive-style', get_template_directory_uri()."/css/responsive.css" ); wp_enqueue_style( 'bizgrowth-default-style', get_template_directory_uri()."/css/default.css" ); wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); wp_enqueue_script( 'bizgrowth-custom-jquery', get_template_directory_uri() . '/js/custom.js' ); wp_enqueue_style( 'animation-style', get_template_directory_uri()."/css/animation.css" ); wp_enqueue_style( 'font-awesome-style', get_template_directory_uri()."/css/font-awesome.css" ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'bizgrowth_scripts' ); function bizgrowth_ie_stylesheet(){ global $wp_styles; /** Load our IE-only stylesheet for all versions of IE. * * * Note: It is also possible to just check and see if the $is_IE global in WordPress is set to true before * calling the wp_enqueue_style() function. If you are trying to load a stylesheet for all browsers * EXCEPT for IE, then you would HAVE to check the $is_IE global since WordPress doesn't have a way to * properly handle non-IE conditional comments. */ wp_enqueue_style('bizgrowth-ie', get_template_directory_uri().'/css/ie.css', array('bizgrowth-style')); $wp_styles->add_data('bizgrowth-ie','conditional','IE'); } add_action('wp_enqueue_scripts','bizgrowth_ie_stylesheet'); define('GRC_THEME_DOC','https://gracethemes.com/documentation/bizgrowth/#homepage-lite','bizgrowth'); function bizgrowth_themebytext(){ return "Design & Develop by Grace Themes"; } /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/bizgrowth-custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/bizgrowth-template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/bizgrowth-extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/bizgrowth-customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; if ( ! function_exists( 'bizgrowth_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function bizgrowth_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; /** * Customize Pro included. */ require_once get_template_directory() . '/customize-pro/example-1/class-customize.php'; // get slug by id function bizgrowth_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function bizgrowth_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?>