false, 'header-text' => false, ) ); add_theme_support( 'custom-logo', array( 'height' => 100, 'width' => 100, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'bicycle-repair-shop' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. */ add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); add_editor_style( 'editor-style.css' ); } endif; // bicycle_repair_shop_setup add_action( 'after_setup_theme', 'bicycle_repair_shop_setup' ); function bicycle_repair_shop_the_breadcrumb() { echo ''; } function bicycle_repair_shop_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'bicycle-repair-shop' ), 'description' => __( 'Appears on blog page sidebar', 'bicycle-repair-shop' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Page Sidebar', 'bicycle-repair-shop' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'bicycle-repair-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Sidebar 3', 'bicycle-repair-shop' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'bicycle-repair-shop' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Shop Page Sidebar', 'bicycle-repair-shop' ), 'description' => __( 'Appears on shop page', 'bicycle-repair-shop' ), 'id' => 'woocommerce_sidebar', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Single Product Page Sidebar', 'bicycle-repair-shop' ), 'description' => __( 'Appears on shop page', 'bicycle-repair-shop' ), 'id' => 'woocommerce-single-sidebar', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 1', 'bicycle-repair-shop' ), 'description' => __( 'Appears on footer', 'bicycle-repair-shop' ), 'id' => 'footer-1', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 2', 'bicycle-repair-shop' ), 'description' => __( 'Appears on footer', 'bicycle-repair-shop' ), 'id' => 'footer-2', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 3', 'bicycle-repair-shop' ), 'description' => __( 'Appears on footer', 'bicycle-repair-shop' ), 'id' => 'footer-3', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer Widget 4', 'bicycle-repair-shop' ), 'description' => __( 'Appears on footer', 'bicycle-repair-shop' ), 'id' => 'footer-4', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); } add_action( 'widgets_init', 'bicycle_repair_shop_widgets_init' ); function bicycle_repair_shop_scripts() { wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" ); wp_enqueue_style('bicycle-repair-shop-style', get_stylesheet_uri(), array() ); wp_style_add_data('bicycle-repair-shop-style', 'rtl', 'replace'); require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' ); wp_add_inline_style( 'bicycle-repair-shop-style',$bicycle_repair_shop_color_scheme_css ); wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri())."/css/owl.carousel.css" ); wp_enqueue_style( 'bicycle-repair-shop-default', esc_url(get_template_directory_uri())."/css/default.css" ); wp_enqueue_style( 'bicycle-repair-shop-style', get_stylesheet_uri() ); wp_enqueue_script( 'owl.carousel-js', esc_url(get_template_directory_uri()). '/js/owl.carousel.js', array('jquery') ); wp_enqueue_script( 'bootstrap-js', esc_url(get_template_directory_uri()). '/js/bootstrap.js', array('jquery') ); wp_enqueue_script( 'bicycle-repair-shop-theme', esc_url(get_template_directory_uri()) . '/js/theme.js' ); wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/css/fontawesome-all.css" ); wp_enqueue_style( 'bicycle-repair-shop-block-style', esc_url( get_template_directory_uri() ).'/css/blocks.css' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // font family $headings_font = esc_html(get_theme_mod('bicycle-repair-shop_headings_fonts')); $body_font = esc_html(get_theme_mod('bicycle-repair-shop_body_fonts')); if ($headings_font) { wp_enqueue_style('bicycle-repair-shop-headings-fonts', '//fonts.googleapis.com/css?family=' . $headings_font); } else { wp_enqueue_style('unbounded', 'https://fonts.googleapis.com/css?family=Unbounded:wght@200;300;400;500;600;700;800;900'); } if ($body_font) { wp_enqueue_style('bicycle-repair-shop-body-fonts', '//fonts.googleapis.com/css?family=' . $body_font); } else { wp_enqueue_style('unbounded', 'https://fonts.googleapis.com/css?family=Unbounded:wght@200;300;400;500;600;700;800;900'); } } add_action( 'wp_enqueue_scripts', 'bicycle_repair_shop_scripts' ); /** * 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'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Sanitization Callbacks. */ require get_template_directory() . '/inc/sanitization-callbacks.php'; /** * Webfont-Loader. */ require get_template_directory() . '/inc/wptt-webfont-loader.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/upgrade-to-pro.php'; /** * select . */ require get_template_directory() . '/inc/select/category-dropdown-custom-control.php'; /** * Theme Info Page. */ require get_template_directory() . '/inc/addon.php'; /** * Theme Info Page. */ if ( ! defined( 'BICYCLE_REPAIR_SHOP_PRO_NAME' ) ) { define( 'BICYCLE_REPAIR_SHOP_PRO_NAME', __( 'About Bicycle Repair Shop', 'bicycle-repair-shop' )); } if ( ! defined( 'BICYCLE_REPAIR_SHOP_THEME_PAGE' ) ) { define('BICYCLE_REPAIR_SHOP_THEME_PAGE',__('https://www.theclassictemplates.com/themes/','bicycle-repair-shop')); } if ( ! defined( 'BICYCLE_REPAIR_SHOP_SUPPORT' ) ) { define('BICYCLE_REPAIR_SHOP_SUPPORT',__('https://wordpress.org/support/theme/bicycle-repair-shop/','bicycle-repair-shop')); } if ( ! defined( 'BICYCLE_REPAIR_SHOP_REVIEW' ) ) { define('BICYCLE_REPAIR_SHOP_REVIEW',__('https://wordpress.org/support/theme/bicycle-repair-shop/reviews/#new-post','bicycle-repair-shop')); } if ( ! defined( 'BICYCLE_REPAIR_SHOP_PRO_DEMO' ) ) { define('BICYCLE_REPAIR_SHOP_PRO_DEMO',__('https://www.theclassictemplates.com/trial/bicycle-repair-shop-pro/','bicycle-repair-shop')); } if ( ! defined( 'BICYCLE_REPAIR_SHOP_PREMIUM_PAGE' ) ) { define('BICYCLE_REPAIR_SHOP_PREMIUM_PAGE',__('https://www.theclassictemplates.com/wp-themes/bike-shop-wordpress-theme/','bicycle-repair-shop')); } if ( ! defined( 'BICYCLE_REPAIR_SHOP_THEME_DOCUMENTATION' ) ) { define('BICYCLE_REPAIR_SHOP_THEME_DOCUMENTATION',__('https://www.theclassictemplates.com/documentation/bicycle-repair-shop-free/','bicycle-repair-shop')); } /* Starter Content */ add_theme_support( 'starter-content', array( 'widgets' => array( 'footer-1' => array( 'categories', ), 'footer-2' => array( 'archives', ), 'footer-3' => array( 'meta', ), 'footer-4' => array( 'search', ), ), )); if ( ! function_exists( 'bicycle_repair_shop_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function bicycle_repair_shop_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif;