__( 'Primary Menu', 'book' ), ) ); } 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 100 */ function book_widgets_init() { register_sidebar( array( 'name' => __( 'Footer Left', 'book' ), 'id' => 'footer-1', 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Center', 'book' ), 'id' => 'footer-2', 'before_widget' => '", 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Right', 'book' ), 'id' => 'footer-3', 'before_widget' => '", 'before_title' => '

', 'after_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' );