false,
'header-text' => false,
) );
add_theme_support( 'title-tag' );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'businessweb-plus' ),
'footer' => __( 'Footer Menu', 'businessweb-plus' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 100,
'flex-height' => true,
) );
add_editor_style( 'editor-style.css' );
}
endif; // businessweb_plus_setup
add_action( 'after_setup_theme', 'businessweb_plus_setup' );
function businessweb_plus_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'businessweb-plus' ),
'description' => __( 'Appears on blog page sidebar', 'businessweb-plus' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Header Info', 'businessweb-plus' ),
'description' => __( 'Appears on header of site', 'businessweb-plus' ),
'id' => 'headerinfo-widget',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 1', 'businessweb-plus' ),
'description' => __( 'Appears on footer', 'businessweb-plus' ),
'id' => 'footer-1',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 2', 'businessweb-plus' ),
'description' => __( 'Appears on footer', 'businessweb-plus' ),
'id' => 'footer-2',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 3', 'businessweb-plus' ),
'description' => __( 'Appears on footer', 'businessweb-plus' ),
'id' => 'footer-3',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 4', 'businessweb-plus' ),
'description' => __( 'Appears on footer', 'businessweb-plus' ),
'id' => 'footer-4',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'businessweb_plus_widgets_init' );
function businessweb_plus_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','businessweb-plus');
/* Translators: If there has any character that are not supported
* by Scada, translate this to off, do not translate
* into your own language.
*/
if('off' !== $roboto_condensed ){
$font_family = array();
if('off' !== $roboto_condensed){
$font_family[] = 'Roboto Condensed:300,400,600,700,800,900';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
function businessweb_plus_scripts() {
wp_enqueue_style('businessweb-plus-font', businessweb_plus_font_url(), array());
wp_enqueue_style( 'businessweb-plus-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'businessweb-plus-editor-style', get_template_directory_uri()."/editor-style.css" );
wp_enqueue_style( 'businessweb-plus-nivoslider-style', get_template_directory_uri()."/css/nivo-slider.css" );
wp_enqueue_style( 'businessweb-plus-main-style', get_template_directory_uri()."/css/responsive.css" );
wp_enqueue_style( 'businessweb-plus-base-style', get_template_directory_uri()."/css/default.css" );
wp_enqueue_script( 'businessweb-plus-nivo-script', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'businessweb-plus-custom_js', get_template_directory_uri() . '/js/custom.js' );
wp_enqueue_style( 'businessweb-plus-animation-style', get_template_directory_uri()."/css/animation.css" );
wp_enqueue_style( 'businessweb-plus-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', 'businessweb_plus_scripts' );
function businessweb_plus_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('businessweb-plus-ie', get_template_directory_uri().'/css/ie.css', array('businessweb-plus-style'));
$wp_styles->add_data('businessweb-plus-ie','conditional','IE');
}
add_action('wp_enqueue_scripts','businessweb_plus_ie_stylesheet');
define('businessweb_plus_protheme_url','https://gracethemes.com/themes/bizweb-creative-wordpress-themes/','businessweb-plus');
define('businessweb_plus_theme_doc','https://gracethemes.com/documentation/businessweb/#homepage-lite','businessweb-plus');
define('businessweb_plus_live_demo','https://gracethemes.com/demo/business-web/','businessweb-plus');
if ( ! function_exists( 'businessweb_plus_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
* @since Businessweb Pplus 1.2.0
*/
function businessweb_plus_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/**
* Custom template for about theme.
*/
require get_template_directory() . '/inc/about-themes.php';
/**
* 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';
/**
* 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';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
// get slug by id
function businessweb_plus_get_slug_by_id($id) {
$post_data = get_post($id, ARRAY_A);
$slug = $post_data['post_name'];
return $slug;
}