false,
'header-text' => false,
) );
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 100,
'flex-height' => true,
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'astronomy-store' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
add_editor_style( 'editor-style.css' );
}
endif; // astronomy_store_setup
add_action( 'after_setup_theme', 'astronomy_store_setup' );
function astronomy_store_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()) {
echo '';
echo the_title();
echo '';
}
}
}
function astronomy_store_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'astronomy-store' ),
'description' => __( 'Appears on blog page sidebar', 'astronomy-store' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer', 'astronomy-store' ),
'description' => __( 'Appears on footer', 'astronomy-store' ),
'id' => 'footer-nav',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'astronomy_store_widgets_init' );
function astronomy_store_scripts() {
wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" );
wp_enqueue_style('astronomy-store-style', get_stylesheet_uri(), array() );
wp_style_add_data('astronomy-store-style', 'rtl', 'replace');
require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' );
wp_add_inline_style( 'astronomy-store-style',$astronomy_store_color_scheme_css );
wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri())."/css/owl.carousel.css" );
wp_enqueue_style( 'astronomy-store-default', esc_url(get_template_directory_uri())."/css/default.css" );
wp_enqueue_style( 'astronomy-store-style', get_stylesheet_uri() );
wp_enqueue_script( 'owl.carousel-js', esc_url(get_template_directory_uri()). '/js/owl.carousel.js', array('jquery') );
wp_enqueue_script( 'bootstrap-js', esc_url(get_template_directory_uri()). '/js/bootstrap.js', array('jquery') );
wp_enqueue_script( 'astronomy-store-theme', esc_url(get_template_directory_uri()) . '/js/theme.js' );
wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/css/fontawesome-all.css" );
wp_enqueue_style( 'astronomy-store-block-style', esc_url( get_template_directory_uri() ).'/css/blocks.css' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
$astronomy_store_headings_font = esc_html(get_theme_mod('astronomy_store_headings_fonts'));
$astronomy_store_body_font = esc_html(get_theme_mod('astronomy_store_body_fonts'));
if( $astronomy_store_headings_font ) {
wp_enqueue_style( 'astronomy-store-headings-fonts', '//fonts.googleapis.com/css?family='. $astronomy_store_headings_font );
} else {
wp_enqueue_style( 'cinzel-decorative', '//fonts.googleapis.com/css?family=Cinzel+Decorative:wght@400;700;900');
}
if( $astronomy_store_body_font ) {
wp_enqueue_style( 'poppins', '//fonts.googleapis.com/css?family='. $astronomy_store_body_font );
} else {
wp_enqueue_style( 'astronomy-store-source-body', '//fonts.googleapis.com/css?family=Poppins: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');
}
}
add_action( 'wp_enqueue_scripts', 'astronomy_store_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Sanitization Callbacks.
*/
require get_template_directory() . '/inc/sanitization-callbacks.php';
/**
* Webfont-Loader.
*/
require get_template_directory() . '/inc/wptt-webfont-loader.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/upgrade-to-pro.php';
if ( ! defined( 'ASTRONOMY_STORE_PREMIUM_PAGE' ) ) {
define('ASTRONOMY_STORE_PREMIUM_PAGE',__('https://www.theclassictemplates.com/wp-themes/astronomy-wordpress-template/','astronomy-store'));
}
if ( ! function_exists( 'astronomy_store_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function astronomy_store_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;