get( 'Version' ) );
if( ! defined( 'ASTER_VLOGGER_THEME_NAME' ) ) define( 'ASTER_VLOGGER_THEME_NAME', $aster_vlogger_theme_data->get( 'Name' ) );
if( ! defined( 'ASTER_VLOGGER_THEME_TEXTDOMAIN' ) ) define( 'ASTER_VLOGGER_THEME_TEXTDOMAIN', $aster_vlogger_theme_data->get( 'TextDomain' ) );
/**
* Include wptt webfont loader.
*/
require_once get_theme_file_path( 'theme-library/function-files/wptt-webfont-loader.php' );
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/theme-library/function-files/template-tags.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/theme-library/function-files/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/theme-library/customizer.php';
/**
* Google Fonts
*/
require get_template_directory() . '/theme-library/function-files/google-fonts.php';
/**
* Dynamic CSS
*/
require get_template_directory() . '/theme-library/dynamic-css.php';
/**
* Getting Started
*/
require get_template_directory() . '/theme-library/getting-started/getting-started.php';
/**
* Breadcrumb
*/
require get_template_directory() . '/theme-library/function-files/class-breadcrumb-trail.php';
if ( ! defined( 'ASTER_VLOGGER_VERSION' ) ) {
define( 'ASTER_VLOGGER_VERSION', '1.0.0' );
}
if ( ! function_exists( 'aster_vlogger_setup' ) ) :
function aster_vlogger_setup() {
load_theme_textdomain( 'aster-vlogger', get_template_directory() . '/languages' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'woocommerce' );
add_theme_support( 'title-tag' );
add_theme_support( 'post-thumbnails' );
register_nav_menus(
array(
'primary' => esc_html__( 'Primary', 'aster-vlogger' ),
'social' => esc_html__( 'Social', 'aster-vlogger' ),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
'woocommerce',
)
);
add_theme_support(
'custom-background',
apply_filters(
'aster_vlogger_custom_background_args',
array(
'default-color' => 'ffffff',
'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_theme_support( 'align-wide' );
add_theme_support( 'responsive-embeds' );
add_theme_support( 'custom-header', array(
'header-text' => false,
'width' => 1920,
'height' => 100
));
}
endif;
add_action( 'after_setup_theme', 'aster_vlogger_setup' );
function aster_vlogger_content_width() {
$GLOBALS['content_width'] = apply_filters( 'aster_vlogger_content_width', 640 );
}
add_action( 'after_setup_theme', 'aster_vlogger_content_width', 0 );
function aster_vlogger_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'aster-vlogger' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'aster-vlogger' ),
'before_widget' => '',
'before_title' => '
',
)
);
$aster_vlogger_footer_widget_column = get_theme_mod('aster_vlogger_footer_widget_column','4');
for ($i=1; $i<=$aster_vlogger_footer_widget_column; $i++) {
register_sidebar( array(
'name' => __( 'Footer ', 'aster-vlogger' ) . $i,
'id' => 'aster-vlogger-footer-widget-' . $i,
'description' => __( 'The Footer Widget Area', 'aster-vlogger' ) . $i,
'before_widget' => '',
'before_title' => '',
) );
}
}
add_action( 'widgets_init', 'aster_vlogger_widgets_init' );
//Redirecting function on getstart
function aster_vlogger_setup_options(){
global $aster_vlogger_pagenow;
if ( is_admin() && ('themes.php' == $aster_vlogger_pagenow) && isset( $_GET['activated'] ) ) {
wp_safe_redirect( admin_url("themes.php?page=aster-vlogger-getting-started") );
}
}
add_action('after_setup_theme', 'aster_vlogger_setup_options');
/**
* Enqueue scripts and styles.
*/
function aster_vlogger_scripts() {
// Append .min if SCRIPT_DEBUG is false.
$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
// Slick style.
wp_enqueue_style( 'aster-vlogger-slick-style', get_template_directory_uri() . '/resource/css/slick' . $min . '.css', array(), '1.8.1' );
// Fontawesome style.
wp_enqueue_style( 'aster-vlogger-fontawesome-style', get_template_directory_uri() . '/resource/css/fontawesome' . $min . '.css', array(), '5.15.4' );
// Google fonts.
wp_enqueue_style( 'aster-vlogger-google-fonts', wptt_get_webfont_url( aster_vlogger_get_fonts_url() ), array(), null );
// Main style.
wp_enqueue_style( 'aster-vlogger-style', get_template_directory_uri() . '/style.css', array(), ASTER_VLOGGER_VERSION );
$aster_vlogger_style_css = '';
if ( get_header_image() ) :
$aster_vlogger_style_css .= '
.home header.site-header .header-main-wrapper .bottom-header-outer-wrapper .bottom-header-part{
background-image: url('.esc_url(get_header_image()).');
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
}';
endif;
wp_add_inline_style( 'aster-vlogger-style', $aster_vlogger_style_css );
// Navigation script.
wp_enqueue_script( 'aster-vlogger-navigation-script', get_template_directory_uri() . '/resource/js/navigation' . $min . '.js', array(), ASTER_VLOGGER_VERSION, true );
// Slick script.
wp_enqueue_script( 'aster-vlogger-slick-script', get_template_directory_uri() . '/resource/js/slick' . $min . '.js', array( 'jquery' ), '1.8.1', true );
// Custom script.
wp_enqueue_script( 'aster-vlogger-custom-script', get_template_directory_uri() . '/resource/js/custom' . $min . '.js', array( 'jquery' ), ASTER_VLOGGER_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'aster_vlogger_scripts' );
// Enqueue Customizer live preview script
function aster_vlogger_customizer_live_preview() {
wp_enqueue_script(
'aster-vlogger-customizer',
get_template_directory_uri() . '/js/customizer.js',
array('jquery', 'customize-preview'),
'',
true
);
}
add_action('customize_preview_init', 'aster_vlogger_customizer_live_preview');
// Output inline CSS based on Customizer setting
function aster_vlogger_customizer_css() {
$aster_vlogger_enable_breadcrumb = get_theme_mod('aster_vlogger_enable_breadcrumb', true);
?>