get( 'Version' ) );
}
if ( ! function_exists( 'automobile_car_shop_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function automobile_car_shop_setup() {
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'align-wide' );
add_theme_support( 'woocommerce' );
// Add support for block styles.
add_theme_support( 'wp-block-styles' );
// Enqueue editor styles.
//add_editor_style( 'style.css' );
// Add support for core custom logo.
add_theme_support(
'custom-logo',
array(
'height' => 192,
'width' => 192,
'flex-width' => true,
'flex-height' => true,
)
);
// Experimental support for adding blocks inside nav menus
add_theme_support( 'block-nav-menus' );
// Add support for experimental link color control.
add_theme_support( 'experimental-link-color' );
// Register nav menus.
register_nav_menus(
array(
'primary' => __( 'Primary Navigation', 'automobile-car-shop' ),
)
);
// Theme Activation Notice
global $pagenow;
if (is_admin() && ('themes.php' == $pagenow) && isset( $_GET['activated'] )) {
add_action('admin_notices', 'automobile_car_shop_activation_notice');
}
}
endif;
add_action( 'after_setup_theme', 'automobile_car_shop_setup' );
// Notice after Theme Activation
function automobile_car_shop_activation_notice() {
echo '
';
echo '
'. esc_html__( 'Thank you for choosing Automobile Car Shop. Would like to have you on our Welcome page so that you can reap all the benefits of our Automobile Car Shop.', 'automobile-car-shop' ) .'
';
echo '
'. esc_html__( 'GET STARTED', 'automobile-car-shop' ) .'
';
echo '
';
}
if ( ! function_exists( 'automobile_car_shop_fonts_url' ) ) :
/**
* Register Google fonts for Automobile Car Shop
*
* Create your own automobile_car_shop_fonts_url() function to override in a child theme.
*
* @since 1.0
*
* @return string Google fonts URL for the theme.
*/
function automobile_car_shop_fonts_url() {
$fonts_url = '';
/* Translators: If there are characters in your language that are not
* supported by Poppins, translate this to 'off'. Do not translate
* into your own language.
*/
$poppins = _x( 'on', 'Poppins font: on or off', 'automobile-car-shop' );
if ( 'off' !== $poppins ) {
$font_families = array();
$font_families[] = 'Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900';
$font_families[] = 'Inter:wght@100;200;300;400;500;600;700;800;900';
$query_args = array(
'family' => implode( '&family=', $font_families ), //urlencode( implode( '|', $font_families ) ),
// 'subset' => urlencode( 'latin,latin-ext' ),
'display' => 'swap',
);
$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css2' );
}
if ( ! class_exists( 'WPTT_WebFont_Loader' ) ) {
// Load Google fonts from Local.
require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' );
}
return esc_url( wptt_get_webfont_url( $fonts_url ) );
}
endif;
/**
* Enqueue scripts and styles.
*/
function automobile_car_shop_scripts() {
wp_enqueue_style('automobile-car-shop-font', automobile_car_shop_fonts_url(), array());
wp_enqueue_style('automobile-car-shop-style', get_stylesheet_uri(), array() );
}
add_action( 'wp_enqueue_scripts', 'automobile_car_shop_scripts' );
/**
* Enqueue block editor style
*/
function automobile_car_shop_block_editor_styles() {
wp_enqueue_style( 'automobile-car-shop-block-patterns-style-editor', get_theme_file_uri( '/css/block-editor.css' ), false, '1.0', 'all' );
wp_enqueue_style('automobile-car-shop-font', automobile_car_shop_fonts_url(), array());
}
add_action( 'enqueue_block_editor_assets', 'automobile_car_shop_block_editor_styles' );
define('AUTOMOBILE_CAR_SHOP_BUY_NOW',__('https://www.vwthemes.com/themes/car-listing-wordpress-theme/','automobile-car-shop'));
define('AUTOMOBILE_CAR_SHOP_SUPPORT',__('https://wordpress.org/support/theme/automobile-car-shop/','automobile-car-shop'));
define('AUTOMOBILE_CAR_SHOP_REVIEW',__('https://wordpress.org/support/theme/automobile-car-shop/reviews/','automobile-car-shop'));
define('AUTOMOBILE_CAR_SHOP_LIVE_DEMO',__('https://www.vwthemes.net/automobile-car-shop/','automobile-car-shop'));
define('AUTOMOBILE_CAR_SHOP_PRO_DOC',__('https://www.vwthemesdemo.com/docs/automobile-car-shop-pro/','automobile-car-shop'));
define('AUTOMOBILE_CAR_SHOP_FREE_DOC',__('https://www.vwthemesdemo.com/docs/free-automobile-car-shop','automobile-car-shop'));
// Add block patterns
require get_template_directory() . '/inc/block-patterns.php';
/**
* Load core file.
*/
require_once get_template_directory() . '/inc/core/theme-info.php';
require_once get_template_directory() . '/inc/core/template-functions.php';