esc_html__( 'Responsive menu', 'auto-car-repair' ), 'left-menu' => esc_html__( 'Left menu', 'auto-car-repair' ), 'right-menu' => esc_html__( 'Right menu', 'auto-car-repair' ), )); add_theme_support( 'responsive-embeds' ); add_theme_support( 'woocommerce' ); add_theme_support( 'align-wide' ); add_theme_support('title-tag'); add_theme_support('automatic-feed-links'); add_theme_support( 'wp-block-styles' ); add_theme_support('post-thumbnails'); add_theme_support( 'custom-background', array( 'default-color' => 'f3f3f3' )); add_theme_support( 'custom-logo', array( 'height' => 120, 'width' => 240, 'flex-height' => true, ) ); add_theme_support( 'custom-header', array( 'default-image' => get_parent_theme_file_uri( '/assets/images/default-header-image.png' ), 'width' => 1920, 'flex-width' => true, 'height' => 550, 'flex-height' => true, 'header-text' => false, )); register_default_headers( array( 'default-image' => array( 'url' => '%s/assets/images/default-header-image.png', 'thumbnail_url' => '%s/assets/images/default-header-image.png', 'description' => __( 'Default Header Image', 'auto-car-repair' ), ), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_editor_style( array( '/assets/css/editor-style.css' ) ); // Theme Activation Notice global $pagenow; if (is_admin() && ('themes.php' == $pagenow) && isset( $_GET['activated'] )) { add_action('admin_notices', 'auto_car_repair_activation_notice'); } } add_action( 'after_setup_theme', 'auto_car_repair_after_setup_theme', 999 ); } function auto_car_repair_activation_notice() { echo '
'; echo '
'; echo '
'; echo '

'. esc_html__( 'Welcome to WPElemento', 'auto-car-repair' ) .'

'; echo '

'. esc_html__( 'Thank you for choosing Auto Car Repair theme .To setup the theme, please visit the get started page.', 'auto-car-repair' ) .'

'; echo ''. esc_html__( 'GET STARTED', 'auto-car-repair' ) .''; echo ''. esc_html__( 'BUY NOW', 'auto-car-repair' ) .''; echo ''. esc_html__( 'DEMO', 'auto-car-repair' ) .''; echo '
'; echo '
'; echo ''; echo '
'; echo '
'; echo '
'; } /* Get post comments */ if (!function_exists('auto_car_repair_comment')) : /** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function auto_car_repair_comment($comment, $args, $depth){ if ('pingback' == $comment->comment_type || 'trackback' == $comment->comment_type) : ?>
  • >
    ', ''); ?>
  • >
    %s', get_comment_author_link() ); ?>
    ', '' ); ?>
    comment_approved) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '
    ', 'after' => '
    ' ) ) ); ?>
    esc_html__('Sidebar','auto-car-repair'), 'id' => 'auto-car-repair-sidebar', 'description' => esc_html__('This sidebar will be shown next to the content.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Page Sidebar','auto-car-repair'), 'id' => 'sidebar-2', 'description' => esc_html__('This sidebar will be shown next to the content.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Sidebar three','auto-car-repair'), 'id' => 'sidebar-3', 'description' => esc_html__('This sidebar will be shown on blog pages.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar 1','auto-car-repair'), 'id' => 'footer1-sidebar', 'description' => esc_html__('It appears in the footer 1.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar 2','auto-car-repair'), 'id' => 'footer2-sidebar', 'description' => esc_html__('It appears in the footer 2.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar 3','auto-car-repair'), 'id' => 'footer3-sidebar', 'description' => esc_html__('It appears in the footer 3.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar 4','auto-car-repair'), 'id' => 'footer4-sidebar', 'description' => esc_html__('It appears in the footer 4.', 'auto-car-repair'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); } add_action( 'widgets_init', 'auto_car_repair_widgets_init' ); } function auto_car_repair_the_breadcrumb() { if (!is_home()) { echo ''; bloginfo('name'); echo " >> "; if (is_category() || is_single()) { the_category(' , '); if (is_single()) { echo " >> "; the_title(); } } elseif (is_page()) { the_title(); } } } /** * logo resizer */ function auto_car_repair_logo_resizer() { $auto_car_repair_theme_logo_size_css = ''; $auto_car_repair_theme_custom_logo_id = get_theme_mod( 'custom_logo' ); $auto_car_repair_theme_logo_width = get_theme_mod( 'auto_car_repair_logo_resizer', 150 ); // Default to 200 if not set $auto_car_repair_theme_logo_height = $auto_car_repair_theme_logo_width * 0.5; if ( $auto_car_repair_theme_custom_logo_id ) { $auto_car_repair_theme_logo_data = wp_get_attachment_image_src( $auto_car_repair_theme_custom_logo_id, 'full' ); $auto_car_repair_theme_logo_url = $auto_car_repair_theme_logo_data[0]; $auto_car_repair_theme_original_width = $auto_car_repair_theme_logo_data[1]; $auto_car_repair_theme_original_height = $auto_car_repair_theme_logo_data[2]; $auto_car_repair_theme_aspect_ratio = $auto_car_repair_theme_original_height / $auto_car_repair_theme_original_width; $auto_car_repair_theme_logo_height = $auto_car_repair_theme_logo_width * $auto_car_repair_theme_aspect_ratio; } $auto_car_repair_theme_logo_size_css = ' .custom-logo{ height: '.esc_attr($auto_car_repair_theme_logo_height).'px !important; width: '.esc_attr($auto_car_repair_theme_logo_width).'px !important; } '; wp_add_inline_style( 'auto-car-repair-style',$auto_car_repair_theme_logo_size_css ); } add_action( 'wp_enqueue_scripts', 'auto_car_repair_logo_resizer' ); /** * Change number or products per row to 3 */ add_filter('loop_shop_columns', 'auto_car_repair_loop_columns', 999); if (!function_exists('auto_car_repair_loop_columns')) { function auto_car_repair_loop_columns() { return get_theme_mod( 'auto_car_repair_products_per_row', '3' ); } } //Change number of products that are displayed per page (shop page) add_filter( 'loop_shop_per_page', 'auto_car_repair_products_per_page' ); function auto_car_repair_products_per_page( $cols ) { return get_theme_mod( 'auto_car_repair_products_per_page',9); } function auto_car_repair_customize_css() { ?>