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_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 $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-5', get_template_directory_uri() . '/revolution/assets/vendors/font-awesome-5/css/all.min.css', array()); 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 ); 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){ $categories = get_the_category($post_id); if ($categories) { $category_ids = array(); $category = get_category($category_ids); $categories = get_the_category($post_id); foreach ($categories as $category) { $category_ids[] = $category->term_id; } $count = $category->category_count; if ($count > 1) { ?>

$category_ids, 'post__not_in' => array($post_id), 'post_type' => 'post', 'posts_per_page' => 3, 'post_status' => 'publish', '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(); ?>
"; ?> img.custom-logo{ width: px; max-width: 100%; } "; } add_action( 'wp_head', 'bike_rental_services_logo_image_height_width' ); /** * Checkbox sanitization callback example. * * Sanitization callback for 'checkbox' type controls. This callback sanitizes `$checked` * as a boolean value, either TRUE or FALSE. */ function bike_rental_services_sanitize_checkbox($checked) { // Boolean check. return ((isset($checked) && true == $checked) ? true : false); } /** * Implement the Custom Header feature. */ require get_template_directory() . '/revolution/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/revolution/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/revolution/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/revolution/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/revolution/inc/jetpack.php'; } /** * Load getstart. */ require get_template_directory() . '/getstarted/getstarted.php'; function bike_rental_services_remove_customize_register() { global $wp_customize; $wp_customize->remove_setting( 'display_header_text' ); $wp_customize->remove_control( 'display_header_text' ); } add_action( 'customize_register', 'bike_rental_services_remove_customize_register', 11 ); define('BIKE_RENTAL_SERVICES_FREE_SUPPORT',__('https://wordpress.org/support/theme/bike-rental-services/','bike-rental-services')); define('BIKE_RENTAL_SERVICES_PRO_SUPPORT',__('https://www.revolutionwp.com/support/revolution-wp/','bike-rental-services')); define('BIKE_RENTAL_SERVICES_REVIEW',__('https://wordpress.org/support/theme/bike-rental-services/reviews/#new-post','bike-rental-services')); define('BIKE_RENTAL_SERVICES_BUY_NOW',__('https://www.revolutionwp.com/wp-themes/bike-shop-wordpress-theme/','bike-rental-services')); define('BIKE_RENTAL_SERVICES_LIVE_DEMO',__('https://www.revolutionwp.com/wpdemo/bike-rental-services-pro/','bike-rental-services')); define('BIKE_RENTAL_SERVICES_PRO_DOC',__('https://www.revolutionwp.com/wpdocs/bike-rental-services-pro/','bike-rental-services')); define('BIKE_RENTAL_SERVICES_LITE_DOC',__('https://www.revolutionwp.com/wpdocs/bike-rental-services-free','bike-rental-services'));