esc_html__( 'Primary', 'bike-rental-services' ), 'social-menu' => esc_html__('Social Menu', 'bike-rental-services'), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); add_theme_support( 'custom-background', apply_filters( 'bike_rental_services_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', 'bike_rental_services_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 $bike_rental_services_content_width */ function bike_rental_services_content_width() { $GLOBALS['content_width'] = apply_filters( 'bike_rental_services_content_width', 640 ); } add_action( 'after_setup_theme', 'bike_rental_services_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function bike_rental_services_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'bike-rental-services' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'bike-rental-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 1', 'bike-rental-services' ), 'id' => 'footer-1', 'description' => esc_html__( 'Add widgets here.', 'bike-rental-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 2', 'bike-rental-services' ), 'id' => 'footer-2', 'description' => esc_html__( 'Add widgets here.', 'bike-rental-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 3', 'bike-rental-services' ), 'id' => 'footer-3', 'description' => esc_html__( 'Add widgets here.', 'bike-rental-services' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'bike_rental_services_widgets_init' ); function bike_rental_services_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 bike_rental_services_scripts() { // Load fonts locally require_once get_theme_file_path('revolution/inc/wptt-webfont-loader.php'); $bike_rental_services_font_families = array( 'Titillium Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700', 'Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900', ); $bike_rental_services_fonts_url = add_query_arg( array( 'family' => implode( '&family=', $bike_rental_services_font_families ), 'display' => 'swap', ), 'https://fonts.googleapis.com/css2' ); wp_enqueue_style('bike-rental-services-google-fonts', wptt_get_webfont_url(esc_url_raw($bike_rental_services_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( 'bike-rental-services-style', get_stylesheet_uri(), array(), BIKE_RENTAL_SERVICES_VERSION ); require get_parent_theme_file_path( '/custom-style.php' ); wp_add_inline_style( 'bike-rental-services-style',$bike_rental_services_custom_css ); wp_style_add_data('bike-rental-services-style', 'rtl', 'replace'); wp_enqueue_script( 'bike-rental-services-navigation', get_template_directory_uri() . '/js/navigation.js', array(), BIKE_RENTAL_SERVICES_VERSION, true ); wp_enqueue_script( 'owl.carousel.jquery', get_template_directory_uri() . '/revolution/assets/js/owl.carousel.js', array(), BIKE_RENTAL_SERVICES_VERSION, true ); wp_enqueue_script( 'bike-rental-services-custom-js', get_template_directory_uri() . '/revolution/assets/js/custom.js', array('jquery'), BIKE_RENTAL_SERVICES_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'bike_rental_services_scripts' ); if (!function_exists('bike_rental_services_related_post')) : /** * Display related posts from same category * */ function bike_rental_services_related_post($post_id){ $bike_rental_services_categories = get_the_category($post_id); if ($bike_rental_services_categories) { $bike_rental_services_category_ids = array(); $bike_rental_services_category = get_category($bike_rental_services_category_ids); $bike_rental_services_categories = get_the_category($post_id); foreach ($bike_rental_services_categories as $bike_rental_services_category) { $bike_rental_services_category_ids[] = $bike_rental_services_category->term_id; } $count = $bike_rental_services_category->category_count; if ($count > 1) { ?>

$bike_rental_services_category_ids, 'post__not_in' => array($post_id), 'post_type' => 'post', 'posts_per_page' => get_theme_mod( 'bike_rental_services_related_post_count', '3' ), 'post_status' => 'publish', 'orderby' => 'rand', 'ignore_sticky_posts' => true ); $bike_rental_services_featured_query = new WP_Query($bike_rental_services_cat_post_args); ?>
have_posts()) : while ($bike_rental_services_featured_query->have_posts()) : $bike_rental_services_featured_query->the_post(); ?>
'; } ?>

get_control( $bike_rental_services_setting->id ); if ( array_key_exists( $bike_rental_services_input, $bike_rental_services_control->choices ) ) { return $bike_rental_services_input; } else { return $bike_rental_services_setting->default; } } //Excerpt function bike_rental_services_excerpt_function($bike_rental_services_excerpt_count = 35) { $bike_rental_services_excerpt = get_the_excerpt(); $bike_rental_services_text_excerpt = wp_strip_all_tags($bike_rental_services_excerpt); $bike_rental_services_excerpt_limit = (int) get_theme_mod('bike_rental_services_excerpt_limit', $bike_rental_services_excerpt_count); $bike_rental_services_words = preg_split('/\s+/', $bike_rental_services_text_excerpt); $bike_rental_services_trimmed_words = array_slice($bike_rental_services_words, 0, $bike_rental_services_excerpt_limit); $bike_rental_services_theme_excerpt = implode(' ', $bike_rental_services_trimmed_words); return $bike_rental_services_theme_excerpt; } // Add admin notice function bike_rental_services_admin_notice() { global $pagenow; $bike_rental_services_theme_args = wp_get_theme(); $bike_rental_services_meta = get_option( 'bike_rental_services_admin_notice' ); $name = $bike_rental_services_theme_args->__get( 'Name' ); $bike_rental_services_current_screen = get_current_screen(); if( !$bike_rental_services_meta ){ if( is_network_admin() ){ return; } if( ! current_user_can( 'manage_options' ) ){ return; } if( $bike_rental_services_current_screen->base !== 'appearance_page_bike_rental_services_guide' && $bike_rental_services_current_screen->base !== 'toplevel_page_bikerentalservices-demoimport' ) { ?>

get( 'Name' ); /* translators: %s!: Theme Name. */ echo esc_html( sprintf( __( 'Welcome to the free theme: %s!', 'bike-rental-services' ), $bike_rental_services_theme_name ) ); ?>

<?php esc_attr_e( 'Theme Screenshot', 'bike-rental-services' ); ?>

remove_setting( 'display_header_text' ); $wp_customize->remove_control( 'display_header_text' ); } add_action( 'customize_register', 'bike_rental_services_remove_customize_register', 11 ); /** * WooCommerce custom filters */ add_filter('loop_shop_columns', 'bike_rental_services_loop_columns'); if (!function_exists('bike_rental_services_loop_columns')) { function bike_rental_services_loop_columns() { $bike_rental_services_columns = get_theme_mod( 'bike_rental_services_per_columns', 3 ); return $bike_rental_services_columns; } } /************************************************************************************/ add_filter( 'loop_shop_per_page', 'bike_rental_services_per_page', 20 ); function bike_rental_services_per_page( $bike_rental_services_cols ) { $bike_rental_services_cols = get_theme_mod( 'bike_rental_services_product_per_page', 9 ); return $bike_rental_services_cols; } /************************************************************************************/ add_filter( 'woocommerce_output_related_products_args', 'bike_rental_services_products_args' ); function bike_rental_services_products_args( $bike_rental_services_args ) { $bike_rental_services_args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 ); $bike_rental_services_args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 ); return $bike_rental_services_args; } /************************************************************************************/ /** * Custom logo */ function bike_rental_services_custom_css() { ?>