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' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Regsiter 4 footer widgets. register_sidebars( 4, array( /* translators: %d: Footer Widget count. */ 'name' => esc_html__( 'Footer Widget %d', 'aster-vlogger' ), 'id' => 'footer-widget', 'description' => esc_html__( 'Add widgets here.', 'aster-vlogger' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); } add_action( 'widgets_init', 'aster_vlogger_widgets_init' ); //Redirecting function on getstart function aster_vlogger_setup_options(){ global $pagenow; if ( is_admin() && ('themes.php' == $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' ); /** * GET STRAT FUNCTION */ function aster_vlogger_getpage_css($hook) { wp_enqueue_script( 'aster-vlogger-admin-script', get_template_directory_uri() . '/resource/js/aster-vlogger-admin-notice-script.js', array( 'jquery' ) ); wp_localize_script( 'aster-vlogger-admin-script', 'aster_vlogger_ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); wp_enqueue_style( 'aster-vlogger-notice-style', get_template_directory_uri() . '/resource/css/notice.css' ); } add_action( 'admin_enqueue_scripts', 'aster_vlogger_getpage_css' ); add_action('wp_ajax_aster_vlogger_dismissable_notice', 'aster_vlogger_dismissable_notice'); function aster_vlogger_switch_theme() { delete_user_meta(get_current_user_id(), 'aster_vlogger_dismissable_notice'); } add_action('after_switch_theme', 'aster_vlogger_switch_theme'); function aster_vlogger_dismissable_notice() { update_user_meta(get_current_user_id(), 'aster_vlogger_dismissable_notice', true); die(); } function aster_vlogger_deprecated_hook_admin_notice() { $dismissed = get_user_meta(get_current_user_id(), 'aster_vlogger_dismissable_notice', true); if ( !$dismissed) { ?>