esc_html__( 'Primary Menu', 'automotive-mechanic' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support('custom-logo'); /* * WooCommerce Plugin Support */ add_theme_support( 'woocommerce' ); // Gutenberg wide images. add_theme_support( 'align-wide' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'assets/css/editor-style.css', automotive_mechanic_google_font() ) ); //Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'automotive_mechanic_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; add_action( 'after_setup_theme', 'automotive_mechanic_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 automotive_mechanic_content_width() { $GLOBALS['content_width'] = apply_filters( 'automotive_mechanic_content_width', 1170 ); } add_action( 'after_setup_theme', 'automotive_mechanic_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function automotive_mechanic_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar Widget Area', 'automotive-mechanic' ), 'id' => 'automotive-mechanic-sidebar-primary', 'description' => __( 'The Primary Widget Area', 'automotive-mechanic' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Widget Area', 'automotive-mechanic' ), 'id' => 'automotive-mechanic-footer-widget-area', 'description' => __( 'The Footer Widget Area', 'automotive-mechanic' ), 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'WooCommerce Widget Area', 'automotive-mechanic' ), 'id' => 'automotive-mechanic-woocommerce-sidebar', 'description' => __( 'This Widget area for WooCommerce Widget', 'automotive-mechanic' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'automotive_mechanic_widgets_init' ); /** * All Styles & Scripts. */ require_once get_template_directory() . '/inc/enqueue.php'; /** * Nav Walker fo Bootstrap Dropdown Menu. */ require_once get_template_directory() . '/inc/class-wp-bootstrap-navwalker.php'; /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require_once get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/automotivemechanic-customizer.php'; require_once get_template_directory() . '/inc/tab-control.php'; add_filter( 'nav_menu_link_attributes', 'automotive_mechanic_dropdown_data_attribute', 20, 3 ); /** * Use namespaced data attribute for Bootstrap's dropdown toggles. * * @param array $atts HTML attributes applied to the item's `` element. * @param WP_Post $item The current menu item. * @param stdClass $args An object of wp_nav_menu() arguments. * @return array */ function automotive_mechanic_dropdown_data_attribute( $atts, $item, $args ) { if ( is_a( $args->walker, 'WP_Bootstrap_Navwalker' ) ) { if ( array_key_exists( 'data-toggle', $atts ) ) { unset( $atts['data-toggle'] ); $atts['data-bs-toggle'] = 'dropdown'; } } return $atts; } function home_renovationenqueue_font_awesome() { wp_enqueue_style('font-awesome', get_template_directory_uri() . '/assets/css/fontawesome.css'); } add_action('wp_enqueue_scripts', 'home_renovationenqueue_font_awesome'); function automotive_mechanic_fonts() { wp_enqueue_style( 'automotive_mechanic-google-fonts-Philosopher', 'https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,700;1,400&display=swap', false ); wp_enqueue_style( 'automotive_mechanic-google-fonts-Kaushan', 'https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap', false ); wp_enqueue_style( 'automotive_mechanic-google-fonts-Ubuntu', 'https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap', false ); } add_action( 'wp_enqueue_scripts', 'automotive_mechanic_fonts' );