__( 'Primary Menu', 'book' ),
) );
/**
* Add support for the Aside Post Formats
*/
add_theme_support( 'post-formats', array( 'aside', ) );
}
endif; // book_setup
add_action( 'after_setup_theme', 'book_setup' );
/**
* Register widgetized area and update footer with default widgets
*
* @since Book 100
*/
function book_widgets_init() {
register_sidebar( array(
'name' => __( 'Footer Left', 'book' ),
'id' => 'footer-1',
'before_widget' => '",
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Center', 'book' ),
'id' => 'footer-2',
'before_widget' => '",
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer Right', 'book' ),
'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 );
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' );