__( 'Primary Menu', 'booklite' ),
) );
/**
* Enable custom background support
*/
add_theme_support( 'custom-background' );
}
add_action( 'after_setup_theme', 'book_setup' );
/**
* Add support for a custom header image.
*/
require( get_template_directory() . '/inc/custom-header.php' );
/**
* Register widgetized area and update footer with default widgets
*
* @since Book Lite 100
*/
function book_widgets_init() {
register_sidebar( array(
'name' => __( 'Footer Left', 'booklite' ),
'id' => 'footer-1',
'before_widget' => '",
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Center', 'booklite' ),
'id' => 'footer-2',
'before_widget' => '",
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer Right', 'booklite' ),
'id' => 'footer-3',
'before_widget' => '",
'before_title' => '',
) );
}
add_action( 'widgets_init', 'book_widgets_init' );
/**
* Enqueue scripts and styles
*/
function book_scripts() {
global $post;
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_script( 'small-menu', get_template_directory_uri() . '/js/small-menu.js', array( 'jquery' ), '20120206', true );
wp_enqueue_script( 'book-script', get_template_directory_uri() . '/js/script.js', array( 'jquery' ), '1.0', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
if ( is_singular() && wp_attachment_is_image( $post->ID ) ) {
wp_enqueue_script( 'keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' );
}
}
add_action( 'wp_enqueue_scripts', 'book_scripts' );
// Remove default gallery styling
add_filter( 'use_default_gallery_style', '__return_false' );
/**
* Add upgrade option
* @since Book Lite 106
*/
add_action('admin_menu', 'book_upgrade_option');
function book_upgrade_option() {
add_theme_page( __( 'Upgrade', 'booklite' ), __( 'Upgrade', 'booklite' ), 'manage_options', 'book-upgrade', 'book_upgrade_content' );
}
/**
* Return upgrade content
*/
function book_upgrade_content() {
?>
Missing Theme Options?
Only Premium version of this theme–Book has Theme Options. You can upload a logo, select from over 300 Google Fonts, select different color themes and also write your own custom CSS if you need.
', 'booklite' ) ?>
; ?>/images/theme-options.png)