esc_html__( 'Primary', 'business-revolution' ),
'social-menu' => esc_html__('Social Menu', 'business-revolution'),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
add_theme_support(
'custom-background',
apply_filters(
'business_revolution_custom_background_args',
array(
'default-color' => '#fafafa',
'default-image' => '',
)
)
);
add_theme_support( 'customize-selective-refresh-widgets' );
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
add_theme_support( 'post-formats', array(
'image',
'video',
'gallery',
'audio',
));
}
add_action( 'after_setup_theme', 'business_revolution_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 $business_revolution_content_width
*/
function business_revolution_content_width() {
$GLOBALS['content_width'] = apply_filters( 'business_revolution_content_width', 640 );
}
add_action( 'after_setup_theme', 'business_revolution_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function business_revolution_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'business-revolution' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'business-revolution' ),
'before_widget' => '',
'before_title' => '
',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 1', 'business-revolution' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widgets here.', 'business-revolution' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 2', 'business-revolution' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widgets here.', 'business-revolution' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 3', 'business-revolution' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widgets here.', 'business-revolution' ),
'before_widget' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'business_revolution_widgets_init' );
function business_revolution_social_menu()
{
if (has_nav_menu('social-menu')) :
wp_nav_menu(array(
'theme_location' => 'social-menu',
'container' => 'ul',
'menu_class' => 'social-menu menu',
'menu_id' => 'menu-social',
));
endif;
}
/**
* Enqueue scripts and styles.
*/
function business_revolution_scripts() {
// Load fonts locally
require_once get_theme_file_path('revolution/inc/wptt-webfont-loader.php');
$business_revolution_font_families = array(
'Inter:wght@100..900',
);
$business_revolution_fonts_url = add_query_arg( array(
'family' => implode( '&family=', $business_revolution_font_families ),
'display' => 'swap',
), 'https://fonts.googleapis.com/css2' );
wp_enqueue_style('business-revolution-google-fonts', wptt_get_webfont_url(esc_url_raw($business_revolution_fonts_url)), array(), '1.0.0');
// Font Awesome CSS
wp_enqueue_style('font-awesome-6', get_template_directory_uri() . '/revolution/assets/vendors/font-awesome-6/css/all.min.css', array(), '6.7.2');
wp_enqueue_style('owl.carousel.style', get_template_directory_uri() . '/revolution/assets/css/owl.carousel.css', array());
wp_enqueue_style( 'business-revolution-style', get_stylesheet_uri(), array(), BUSINESS_REVOLUTION_VERSION );
require get_parent_theme_file_path( '/custom-style.php' );
wp_add_inline_style( 'business-revolution-style',$business_revolution_custom_css );
wp_style_add_data('business-revolution-style', 'rtl', 'replace');
wp_enqueue_script( 'business-revolution-navigation', get_template_directory_uri() . '/js/navigation.js', array(), BUSINESS_REVOLUTION_VERSION, true );
wp_enqueue_script( 'owl.carousel.jquery', get_template_directory_uri() . '/revolution/assets/js/owl.carousel.js', array(), BUSINESS_REVOLUTION_VERSION, true );
wp_enqueue_script( 'business-revolution-custom-js', get_template_directory_uri() . '/revolution/assets/js/custom.js', array('jquery'), BUSINESS_REVOLUTION_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'business_revolution_scripts' );
if (!function_exists('business_revolution_related_post')) :
/**
* Display related posts from same category
*
*/
function business_revolution_related_post($post_id){
$business_revolution_categories = get_the_category($post_id);
if ($business_revolution_categories) {
$business_revolution_category_ids = array();
$business_revolution_category = get_category($business_revolution_category_ids);
$business_revolution_categories = get_the_category($post_id);
foreach ($business_revolution_categories as $business_revolution_category) {
$business_revolution_category_ids[] = $business_revolution_category->term_id;
}
$business_revolution_count = $business_revolution_category->category_count;
if ($business_revolution_count > 1) { ?>
$business_revolution_category_ids,
'post__not_in' => array($post_id),
'post_type' => 'post',
'posts_per_page' => get_theme_mod( 'business_revolution_related_post_count', '3' ),
'post_status' => 'publish',
'orderby' => 'rand',
'ignore_sticky_posts' => true
);
$business_revolution_featured_query = new WP_Query($business_revolution_cat_post_args);
?>
have_posts()) :
while ($business_revolution_featured_query->have_posts()) : $business_revolution_featured_query->the_post();
?>
get_control( $business_revolution_setting->id );
if ( array_key_exists( $business_revolution_input, $business_revolution_control->choices ) ) {
return $business_revolution_input;
} else {
return $business_revolution_setting->default;
}
}
//Excerpt
function business_revolution_excerpt_function($business_revolution_excerpt_count = 35) {
$business_revolution_excerpt = get_the_excerpt();
$business_revolution_text_excerpt = wp_strip_all_tags($business_revolution_excerpt);
$business_revolution_excerpt_limit = (int) get_theme_mod('business_revolution_excerpt_limit', $business_revolution_excerpt_count);
$business_revolution_words = preg_split('/\s+/', $business_revolution_text_excerpt);
$business_revolution_trimmed_words = array_slice($business_revolution_words, 0, $business_revolution_excerpt_limit);
$business_revolution_theme_excerpt = implode(' ', $business_revolution_trimmed_words);
return $business_revolution_theme_excerpt;
}
// Add admin notice
function business_revolution_admin_notice() {
global $pagenow;
$business_revolution_theme_args = wp_get_theme();
$business_revolution_meta = get_option( 'business_revolution_admin_notice' );
$name = $business_revolution_theme_args->__get( 'Name' );
$business_revolution_current_screen = get_current_screen();
if( !$business_revolution_meta ){
if( is_network_admin() ){
return;
}
if( ! current_user_can( 'manage_options' ) ){
return;
}
if( $business_revolution_current_screen->base !== 'appearance_page_business_revolution_guide' &&
$business_revolution_current_screen->base !== 'toplevel_page_businessrevolution-demoimport' ) { ?>
get( 'Name' );
/* translators: %s!: Theme Name. */
echo esc_html( sprintf( __( 'Welcome to the free theme: %s!', 'business-revolution' ), $business_revolution_theme_name ) );
?>
remove_setting( 'display_header_text' );
$wp_customize->remove_control( 'display_header_text' );
}
add_action( 'customize_register', 'business_revolution_remove_customize_register', 11 );
/**
* WooCommerce custom filters
*/
add_filter('loop_shop_columns', 'business_revolution_loop_columns');
if (!function_exists('business_revolution_loop_columns')) {
function business_revolution_loop_columns() {
$business_revolution_columns = get_theme_mod( 'business_revolution_per_columns', 3 );
return $business_revolution_columns;
}
}
/************************************************************************************/
add_filter( 'loop_shop_per_page', 'business_revolution_per_page', 20 );
function business_revolution_per_page( $business_revolution_cols ) {
$business_revolution_cols = get_theme_mod( 'business_revolution_product_per_page', 9 );
return $business_revolution_cols;
}
/************************************************************************************/
add_filter( 'woocommerce_output_related_products_args', 'business_revolution_products_args' );
function business_revolution_products_args( $business_revolution_args ) {
$business_revolution_args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 );
$business_revolution_args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 );
return $business_revolution_args;
}
/************************************************************************************/
/**
* Custom logo
*/
function business_revolution_custom_css() {
?>