. add_theme_support( 'automatic-feed-links' ); // Add support for a variety of post formats add_theme_support( 'post-formats', array( 'aside', 'image', 'link', 'quote' ) ); // This theme uses wp_nav_menu() in one location. register_nav_menu( 'primary', __( 'Primary Menu', 'twentytwelve' ) ); // Add support for custom background. add_theme_support( 'custom-background' ); // Add custom image size for featured image use, displayed on "standard" posts. add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 624, 9999 ); // Unlimited height, soft crop } add_action( 'after_setup_theme', 'twentytwelve_setup' ); /** * Add support for a custom header image. */ require( get_template_directory() . '/inc/custom-header.php' ); /** * Enqueue scripts and styles for front-end. * * @since Twenty Twelve 1.0 */ function twentytwelve_scripts_styles() { global $twentytwelve_options; /** * Add JavaScript to pages with the comment form to support * sites with threaded comments (when in use). */ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); /** * JavaScript for handling navigation menus and the resized * styles for small screen sizes. */ wp_enqueue_script( 'navigation', get_template_directory_uri() . '/js/theme.js', array( 'jquery' ), '20130320', true ); /** * Load special font CSS file. * Depends on Theme Options setting. */ $options = $twentytwelve_options->get_theme_options(); if ( $options['enable_fonts'] ) wp_enqueue_style( 'fonts', 'http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' ); /** * Load our main CSS file. */ wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri() ); /** * Load HTML5 shiv for older IE version support for HTML5 elements. * Ideally, should load after main CSS file. * * See html5.js link in header.php. * * TODO depends on IE dependency being in core for JS enqueuing * before we can move here properly: see http://core.trac.wordpress.org/ticket/16024 */ } add_action( 'wp_enqueue_scripts', 'twentytwelve_scripts_styles' ); /** * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link. * * @since Twenty Twelve 1.0 */ function twentytwelve_page_menu_args( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'twentytwelve_page_menu_args' ); /** * Register our single widget area. * * @since Twenty Twelve 1.0 */ function twentytwelve_widgets_init() { register_sidebar( array( 'name' => __( 'Main Sidebar', 'twentytwelve' ), 'id' => 'sidebar-1', 'description' => __( 'Appears on posts and pages except the optional Homepage template, which uses its own set of widgets', 'twentytwelve' ), 'before_widget' => '", 'before_title' => '
', '' ); ?>