50, 'width' => 150, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'bizgrowth' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); } endif; // bizgrowth_setup add_action( 'after_setup_theme', 'bizgrowth_setup' ); 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' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 1', 'bizgrowth' ), 'description' => __( 'Appears on footer', 'bizgrowth' ), 'id' => 'footer-widget-1', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 2', 'bizgrowth' ), 'description' => __( 'Appears on footer', 'bizgrowth' ), 'id' => 'footer-widget-2', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 3', 'bizgrowth' ), 'description' => __( 'Appears on footer', 'bizgrowth' ), 'id' => 'footer-widget-3', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 4', 'bizgrowth' ), 'description' => __( 'Appears on footer', 'bizgrowth' ), 'id' => 'footer-widget-4', 'before_widget' => '
', 'after_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. */ $robotocondensed = _x('on','robotocondensed:on or off','bizgrowth'); /* Translators: If there are any character that are not * supported by Libre Franklin, trsnalate this to off, do not * translate into your own language. */ $librefranklin = _x('on','librefranklin:on or off','bizgrowth'); if('off' !== $robotocondensed || 'off' !== $librefranklin ){ $font_family = array(); if('off' !== $robotocondensed){ $font_family[] = 'Roboto Condensed:300,400,600'; } if('off' !== $librefranklin){ $font_family[] = 'Libre Franklin:400,700'; } $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( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" ); wp_enqueue_style( 'fontawesome-all-style', get_template_directory_uri().'/fontsawesome/css/fontawesome-all.css' ); wp_enqueue_style( 'bizgrowth-responsive', get_template_directory_uri()."/css/responsive.css" ); wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); wp_enqueue_script( 'bizgrowth-custom', get_template_directory_uri() . '/js/custom.js' ); 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(){ // Load the Internet Explorer specific stylesheet. wp_enqueue_style('bizgrowth-ie', get_template_directory_uri().'/css/ie.css', array( 'bizgrowth-style' ), '20160928' ); wp_style_add_data('bizgrowth-ie','conditional','lt IE 10'); // Load the Internet Explorer 8 specific stylesheet. wp_enqueue_style( 'bizgrowth-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'bizgrowth-style' ), '20160928' ); wp_style_add_data( 'bizgrowth-ie8', 'conditional', 'lt IE 9' ); // Load the Internet Explorer 7 specific stylesheet. wp_enqueue_style( 'bizgrowth-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'bizgrowth-style' ), '20160928' ); wp_style_add_data( 'bizgrowth-ie7', 'conditional', 'lt IE 8' ); } add_action('wp_enqueue_scripts','bizgrowth_ie_stylesheet'); define('BIZGROWTH_THEME_DOC','https://gracethemes.com/documentation/bizgrowth/#homepage-lite','bizgrowth'); define('BIZGROWTH_PROTHEME_URL','https://gracethemes.com/themes/bizgrowth-corporate-wordpress-theme/','bizgrowth'); define('BIZGROWTH_LIVE_DEMO','https://gracethemes.com/demo/bizgrowth/','bizgrowth'); 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; /** * 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 template for about theme. */ if ( is_admin() ) { require get_template_directory() . '/inc/bizgrowth-about-themes.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';