esc_html__( 'Primary', 'cab-booking' ),
'social-menu' => esc_html__('Social Menu', 'cab-booking'),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
add_theme_support(
'custom-background',
apply_filters(
'cab_booking_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', 'cab_booking_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 $cab_booking_content_width
*/
function cab_booking_content_width() {
$GLOBALS['content_width'] = apply_filters( 'cab_booking_content_width', 640 );
}
add_action( 'after_setup_theme', 'cab_booking_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function cab_booking_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'cab-booking' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'cab-booking' ),
'before_widget' => '',
'before_title' => '
',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 1', 'cab-booking' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widgets here.', 'cab-booking' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 2', 'cab-booking' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widgets here.', 'cab-booking' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 3', 'cab-booking' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widgets here.', 'cab-booking' ),
'before_widget' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'cab_booking_widgets_init' );
function cab_booking_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 cab_booking_scripts() {
// Load fonts locally
require_once get_theme_file_path('revolution/inc/wptt-webfont-loader.php');
$cab_booking_font_families = array(
'Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap',
);
$cab_booking_fonts_url = add_query_arg( array(
'family' => implode( '&family=', $cab_booking_font_families ),
'display' => 'swap',
), 'https://fonts.googleapis.com/css2' );
wp_enqueue_style('cab-booking-google-fonts', wptt_get_webfont_url(esc_url_raw($cab_booking_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( 'cab-booking-style', get_stylesheet_uri(), array(), CAB_BOOKING_VERSION );
require get_parent_theme_file_path( '/custom-style.php' );
wp_add_inline_style( 'cab-booking-style',$cab_booking_custom_css );
wp_style_add_data('cab-booking-style', 'rtl', 'replace');
wp_enqueue_script( 'cab-booking-navigation', get_template_directory_uri() . '/js/navigation.js', array(), CAB_BOOKING_VERSION, true );
wp_enqueue_script( 'owl.carousel.jquery', get_template_directory_uri() . '/revolution/assets/js/owl.carousel.js', array(), CAB_BOOKING_VERSION, true );
wp_enqueue_script( 'cab-booking-custom-js', get_template_directory_uri() . '/revolution/assets/js/custom.js', array('jquery'), CAB_BOOKING_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'cab_booking_scripts' );
if (!function_exists('cab_booking_related_post')) :
/**
* Display related posts from same category
*
*/
function cab_booking_related_post($post_id){
$cab_booking_categories = get_the_category($post_id);
if ($cab_booking_categories) {
$cab_booking_category_ids = array();
$cab_booking_category = get_category($cab_booking_category_ids);
$cab_booking_categories = get_the_category($post_id);
foreach ($cab_booking_categories as $cab_booking_category) {
$cab_booking_category_ids[] = $cab_booking_category->term_id;
}
$cab_booking_count = $cab_booking_category->category_count;
if ($cab_booking_count > 1) { ?>
$cab_booking_category_ids,
'post__not_in' => array($post_id),
'post_type' => 'post',
'posts_per_page' => get_theme_mod( 'cab_booking_related_post_count', '3' ),
'post_status' => 'publish',
'ignore_sticky_posts' => true
);
$cab_booking_featured_query = new WP_Query($cab_booking_cat_post_args);
?>
have_posts()) :
while ($cab_booking_featured_query->have_posts()) : $cab_booking_featured_query->the_post();
?>
get_control( $cab_booking_setting->id );
if ( array_key_exists( $cab_booking_input, $cab_booking_control->choices ) ) {
return $cab_booking_input;
} else {
return $cab_booking_setting->default;
}
}
//Excerpt
function cab_booking_excerpt_function($cab_booking_excerpt_count = 35) {
$cab_booking_excerpt = get_the_excerpt();
$cab_booking_text_excerpt = wp_strip_all_tags($cab_booking_excerpt);
$cab_booking_excerpt_limit = (int) get_theme_mod('cab_booking_excerpt_limit', $cab_booking_excerpt_count);
$cab_booking_words = preg_split('/\s+/', $cab_booking_text_excerpt);
$cab_booking_trimmed_words = array_slice($cab_booking_words, 0, $cab_booking_excerpt_limit);
$cab_booking_theme_excerpt = implode(' ', $cab_booking_trimmed_words);
return $cab_booking_theme_excerpt;
}
// Add admin notice
function cab_booking_admin_notice() {
global $pagenow;
$cab_booking_theme_args = wp_get_theme();
$cab_booking_meta = get_option( 'cab_booking_admin_notice' );
$name = $cab_booking_theme_args->__get( 'Name' );
$cab_booking_current_screen = get_current_screen();
if( !$cab_booking_meta ){
if( is_network_admin() ){
return;
}
if( ! current_user_can( 'manage_options' ) ){
return;
}
if($cab_booking_current_screen->base != 'appearance_page_cab_booking_guide' ) { ?>
remove_setting( 'display_header_text' );
$wp_customize->remove_control( 'display_header_text' );
}
add_action( 'customize_register', 'cab_booking_remove_customize_register', 11 );
/**
* WooCommerce custom filters
*/
add_filter('loop_shop_columns', 'cab_booking_loop_columns');
if (!function_exists('cab_booking_loop_columns')) {
function cab_booking_loop_columns() {
$cab_booking_columns = get_theme_mod( 'cab_booking_per_columns', 3 );
return $cab_booking_columns;
}
}
/************************************************************************************/
add_filter( 'loop_shop_per_page', 'cab_booking_per_page', 20 );
function cab_booking_per_page( $cab_booking_cols ) {
$cab_booking_cols = get_theme_mod( 'cab_booking_product_per_page', 9 );
return $cab_booking_cols;
}
/************************************************************************************/
add_filter( 'woocommerce_output_related_products_args', 'cab_booking_products_args' );
function cab_booking_products_args( $cab_booking_args ) {
$cab_booking_args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 );
$cab_booking_args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 );
return $cab_booking_args;
}
/************************************************************************************/
/**
* Custom logo
*/
function cab_booking_custom_css() {
?>