70,
'width' => 250,
'flex-height' => true,
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'animate-lite' ),
'footer' => __( 'Footer Menu', 'animate-lite' ),
) );
add_editor_style( 'editor-style.css' );
}
endif; // animate_lite_setup
add_action( 'after_setup_theme', 'animate_lite_setup' );
function animate_lite_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'animate-lite' ),
'description' => __( 'Appears on blog page sidebar', 'animate-lite' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 1', 'animate-lite' ),
'description' => __( 'Appears on footer', 'animate-lite' ),
'id' => 'footer-widget-column-1',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 2', 'animate-lite' ),
'description' => __( 'Appears on footer', 'animate-lite' ),
'id' => 'footer-widget-column-2',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 3', 'animate-lite' ),
'description' => __( 'Appears on footer', 'animate-lite' ),
'id' => 'footer-widget-column-3',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 4', 'animate-lite' ),
'description' => __( 'Appears on footer', 'animate-lite' ),
'id' => 'footer-widget-column-4',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'animate_lite_widgets_init' );
function animate_lite_font_url(){
$font_url = '';
/* Translators: If there are any character that are not
* supported by Assistant, trsnalate this to off, do not
* translate into your own language.
*/
$assistant = _x('on','Assistant:on or off','animate-lite');
/* Translators: If there are any character that are not
* supported by Bitter, trsnalate this to off, do not
* translate into your own language.
*/
$bitter = _x('on','Bitter:on or off','animate-lite');
/* Translators: If there are any character that are not
* supported by Lobster, trsnalate this to off, do not
* translate into your own language.
*/
$lobster = _x('on','Lobster:on or off','animate-lite');
if('off' !== $assistant || 'off' !== $bitter || 'off' !== $lobster ){
$font_family = array();
if('off' !== $assistant){
$font_family[] = 'Assistant:300,400,600,800';
}
if('off' !== $bitter){
$font_family[] = 'Bitter:400,700';
}
if('off' !== $lobster){
$font_family[] = 'Lobster:400';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
function animate_lite_scripts() {
wp_enqueue_style('animate-lite-font', animate_lite_font_url(), array());
wp_enqueue_style( 'animate-lite-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" );
wp_enqueue_style( 'fontawesome-all-style', get_template_directory_uri().'/fontsawesome/css/fontawesome-all.css' );
wp_enqueue_style( 'animate-lite-responsive', get_template_directory_uri()."/css/responsive.css" );
wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'animate-lite-editable', get_template_directory_uri() . '/js/editable.js' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'animate_lite_scripts' );
function animate_lite_ie_stylesheet(){
// Load the Internet Explorer specific stylesheet.
wp_enqueue_style('animate-lite-ie', get_template_directory_uri().'/css/ie.css', array( 'animate-lite-style' ), '20190312' );
wp_style_add_data('animate-lite-ie','conditional','lt IE 10');
// Load the Internet Explorer 8 specific stylesheet.
wp_enqueue_style( 'animate-lite-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'animate-lite-style' ), '20190312' );
wp_style_add_data( 'animate-lite-ie8', 'conditional', 'lt IE 9' );
// Load the Internet Explorer 7 specific stylesheet.
wp_enqueue_style( 'animate-lite-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'animate-lite-style' ), '20190312' );
wp_style_add_data( 'animate-lite-ie7', 'conditional', 'lt IE 8' );
}
add_action('wp_enqueue_scripts','animate_lite_ie_stylesheet');
define('animate_lite_theme_doc',__('http://www.gracethemesdemo.com/documentation/animate/#homepage-lite','animate-lite'));
define('animate_lite_protheme_url',__('https://gracethemes.com/themes/pet-care-wordpress-theme/','animate-lite'));
define('animate_lite_live_demo',__('http://www.gracethemesdemo.com/animate/','animate-lite'));
if ( ! function_exists( 'animate_lite_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function animate_lite_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/**
* WooCommerce Compatibility
*/
add_action( 'after_setup_theme', 'animate_lite_setup_woocommerce_support' );
function animate_lite_setup_woocommerce_support()
{
add_theme_support('woocommerce');
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}
/**
* Customize Pro included.
*/
require_once get_template_directory() . '/customize-pro/example-1/class-customize.php';
//Custom Excerpt length.
function animate_lite_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'animate_lite_excerpt_length', 999 );
/**
* 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';
/**
* Custom template for about theme.
*/
if ( is_admin() ) {
require get_template_directory() . '/inc/about-themes.php';
}
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';