__( 'Primary Menu', 'automobile-hub' ), ) ); // Add theme support for Custom Logo. add_theme_support( 'custom-logo', array( 'width' => 250, 'height' => 250, 'flex-width' => true, ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'assets/css/editor-style.css', automobile_hub_fonts_url() ) ); } add_action( 'after_setup_theme', 'automobile_hub_setup' ); /** * Register custom fonts. */ function automobile_hub_fonts_url(){ $font_url = ''; $font_family = array(); $font_family[] = 'Oswald:200,300,400,500,600,700'; $font_family[] = 'Roboto:100,100i,300,400,400i,500,500i,700,700i,900,900i'; $query_args = array( 'family' => rawurlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); return $font_url; } /** * Register widget area. */ function automobile_hub_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'automobile-hub' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'automobile-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'automobile-hub' ), 'id' => 'footer-1', 'description' => __( 'Add widgets here to appear in your footer.', 'automobile-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 2', 'automobile-hub' ), 'id' => 'footer-2', 'description' => __( 'Add widgets here to appear in your footer.', 'automobile-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 3', 'automobile-hub' ), 'id' => 'footer-3', 'description' => __( 'Add widgets here to appear in your footer.', 'automobile-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 4', 'automobile-hub' ), 'id' => 'footer-4', 'description' => __( 'Add widgets here to appear in your footer.', 'automobile-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'automobile_hub_widgets_init' ); /** * Enqueue scripts and styles. */ function automobile_hub_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'automobile-hub-fonts', automobile_hub_fonts_url(), array(), null ); // Bootstrap wp_enqueue_style( 'bootstrap', get_theme_file_uri( '/assets/css/bootstrap.css' ) ); // Theme stylesheet. wp_enqueue_style( 'automobile-hub-style', get_stylesheet_uri() ); // Fontawesome wp_enqueue_style( 'fontawesome', get_theme_file_uri( '/assets/css/fontawesome-all.css' ) ); wp_enqueue_script( 'jquery-superfish', get_theme_file_uri( '/assets/js/jquery.superfish.js' ), array( 'jquery' ), '2.1.2', true ); wp_enqueue_script( 'bootstrap', get_theme_file_uri( '/assets/js/bootstrap.js' ), array( 'jquery' ), true ); wp_enqueue_script( 'automobile-hub-custom-scripts', get_template_directory_uri() . '/assets/js/automobile-hub-custom.js', array('jquery'), true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'automobile_hub_scripts' ); /*radio button sanitization*/ function automobile_hub_sanitize_choices( $input, $setting ) { global $wp_customize; $control = $wp_customize->get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } /* Excerpt Limit Begin */ function automobile_hub_string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); } function automobile_hub_sanitize_dropdown_pages( $page_id, $setting ) { // Ensure $input is an absolute integer. $page_id = absint( $page_id ); // If $page_id is an ID of a published page, return it; otherwise, return the default. return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } // Change number or products per row to 3 add_filter('loop_shop_columns', 'automobile_hub_loop_columns'); if (!function_exists('automobile_hub_loop_columns')) { function automobile_hub_loop_columns() { return 3; // 3 products per row } } /** * Use front-page.php when Front page displays is set to a static page. */ function automobile_hub_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template','automobile_hub_front_page_template' ); define('AUTOMOBILE_HUB_CREDIT','https://www.themespride.com/'); if ( ! function_exists( 'automobile_hub_credit' ) ) { function automobile_hub_credit(){ echo "".esc_html__('Themespride','automobile-hub').""; } } /** * Implement the Custom Header feature. */ require get_parent_theme_file_path( '/inc/custom-header.php' ); /** * Custom template tags for this theme. */ require get_parent_theme_file_path( '/inc/template-tags.php' ); /** * Additional features to allow styling of the templates. */ require get_parent_theme_file_path( '/inc/template-functions.php' ); /** * Customizer additions. */ require get_parent_theme_file_path( '/inc/customizer.php' );