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' => '
',
)
);
// 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' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'aster_vlogger_widgets_init' );
/**
* 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' );