2011-04-20 17:46:33 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-26 18:52:18 -04:00
|
|
|
* Twenty Eleven functions and definitions
|
|
|
|
*
|
|
|
|
* Sets up the theme and provides some helper functions. Some helper functions
|
|
|
|
* are used in the theme as custom template tags. Others are attached to action and
|
|
|
|
* filter hooks in WordPress to change core functionality.
|
|
|
|
*
|
|
|
|
* The first function, twentyeleven_setup(), sets up the theme by registering support
|
|
|
|
* for various features in WordPress, such as post thumbnails, navigation menus, and the like.
|
|
|
|
*
|
|
|
|
* When using a child theme (see http://codex.wordpress.org/Theme_Development and
|
|
|
|
* http://codex.wordpress.org/Child_Themes), you can override certain functions
|
|
|
|
* (those wrapped in a function_exists() call) by defining them first in your child theme's
|
|
|
|
* functions.php file. The child theme's functions.php file is included before the parent
|
|
|
|
* theme's file, so the child theme functions would be used.
|
|
|
|
*
|
|
|
|
* Functions that are not pluggable (not wrapped in function_exists()) are instead attached
|
|
|
|
* to a filter or action hook. The hook can be removed by using remove_action() or
|
|
|
|
* remove_filter() and you can attach your own function to the hook.
|
|
|
|
*
|
|
|
|
* We can remove the parent theme's hook only after it is attached, which means we need to
|
|
|
|
* wait until setting up the child theme:
|
|
|
|
*
|
|
|
|
* <code>
|
|
|
|
* add_action( 'after_setup_theme', 'my_child_theme_setup' );
|
|
|
|
* function my_child_theme_setup() {
|
|
|
|
* // We are providing our own filter for excerpt_length (or using the unfiltered value)
|
|
|
|
* remove_filter( 'excerpt_length', 'twentyeleven_excerpt_length' );
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API.
|
|
|
|
*
|
2011-04-20 17:46:33 -04:00
|
|
|
* @package WordPress
|
2011-05-18 15:06:09 -04:00
|
|
|
* @subpackage Twenty_Eleven
|
2011-04-26 18:52:18 -04:00
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-20 17:46:33 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the content width based on the theme's design and stylesheet.
|
|
|
|
*/
|
|
|
|
if ( ! isset( $content_width ) )
|
|
|
|
$content_width = 584;
|
|
|
|
|
|
|
|
/**
|
2011-04-26 18:52:18 -04:00
|
|
|
* Tell WordPress to run twentyeleven_setup() when the 'after_setup_theme' hook is run.
|
2011-04-20 17:46:33 -04:00
|
|
|
*/
|
2011-04-26 18:52:18 -04:00
|
|
|
add_action( 'after_setup_theme', 'twentyeleven_setup' );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-04-26 18:52:18 -04:00
|
|
|
if ( ! function_exists( 'twentyeleven_setup' ) ):
|
2011-04-20 17:46:33 -04:00
|
|
|
/**
|
2011-04-26 18:52:18 -04:00
|
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
|
|
*
|
|
|
|
* Note that this function is hooked into the after_setup_theme hook, which runs
|
|
|
|
* before the init hook. The init hook is too late for some features, such as indicating
|
|
|
|
* support post thumbnails.
|
|
|
|
*
|
|
|
|
* To override twentyeleven_setup() in a child theme, add your own twentyeleven_setup to your child theme's
|
|
|
|
* functions.php file.
|
|
|
|
*
|
2011-05-05 18:46:37 -04:00
|
|
|
* @uses load_theme_textdomain() For translation/localization support.
|
|
|
|
* @uses add_editor_style() To style the visual editor.
|
|
|
|
* @uses add_theme_support() To add support for post thumbnails, automatic feed links, and Post Formats.
|
2011-04-26 18:52:18 -04:00
|
|
|
* @uses register_nav_menus() To add support for navigation menus.
|
|
|
|
* @uses add_custom_background() To add support for a custom background.
|
|
|
|
* @uses add_custom_image_header() To add support for a custom header.
|
|
|
|
* @uses register_default_headers() To register the default custom header images provided with the theme.
|
|
|
|
* @uses set_post_thumbnail_size() To set a custom post thumbnail size.
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-20 17:46:33 -04:00
|
|
|
*/
|
2011-04-26 18:52:18 -04:00
|
|
|
function twentyeleven_setup() {
|
|
|
|
|
2011-04-28 06:13:38 -04:00
|
|
|
/* Make Twenty Eleven available for translation.
|
|
|
|
* Translations can be added to the /languages/ directory.
|
2011-04-26 18:52:18 -04:00
|
|
|
* If you're building a theme based on Twenty Eleven, use a find and replace
|
2011-04-28 06:13:38 -04:00
|
|
|
* to change 'twentyeleven' to the name of your theme in all the template files.
|
2011-04-26 18:52:18 -04:00
|
|
|
*/
|
2011-10-25 00:42:16 -04:00
|
|
|
load_theme_textdomain( 'twentyeleven', get_template_directory() . '/languages' );
|
2011-04-26 18:52:18 -04:00
|
|
|
|
|
|
|
$locale = get_locale();
|
2011-10-25 00:42:16 -04:00
|
|
|
$locale_file = get_template_directory() . "/languages/$locale.php";
|
2011-04-26 18:52:18 -04:00
|
|
|
if ( is_readable( $locale_file ) )
|
|
|
|
require_once( $locale_file );
|
|
|
|
|
2011-05-05 18:46:37 -04:00
|
|
|
// This theme styles the visual editor with editor-style.css to match the theme style.
|
|
|
|
add_editor_style();
|
|
|
|
|
2011-04-28 06:13:38 -04:00
|
|
|
// Load up our theme options page and related code.
|
2011-11-14 19:37:50 -05:00
|
|
|
require( get_template_directory() . '/inc/theme-options.php' );
|
2011-04-26 18:52:18 -04:00
|
|
|
|
2011-06-04 11:54:47 -04:00
|
|
|
// Grab Twenty Eleven's Ephemera widget.
|
2011-11-14 19:37:50 -05:00
|
|
|
require( get_template_directory() . '/inc/widgets.php' );
|
2011-04-26 18:52:18 -04:00
|
|
|
|
2011-04-28 06:13:38 -04:00
|
|
|
// Add default posts and comments RSS feed links to <head>.
|
2011-04-26 18:52:18 -04:00
|
|
|
add_theme_support( 'automatic-feed-links' );
|
|
|
|
|
2011-04-28 06:13:38 -04:00
|
|
|
// This theme uses wp_nav_menu() in one location.
|
|
|
|
register_nav_menu( 'primary', __( 'Primary Menu', 'twentyeleven' ) );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-11 02:30:59 -04:00
|
|
|
// Add support for a variety of post formats
|
2011-04-29 18:33:04 -04:00
|
|
|
add_theme_support( 'post-formats', array( 'aside', 'link', 'gallery', 'status', 'quote', 'image' ) );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-11 02:30:59 -04:00
|
|
|
// Add support for custom backgrounds
|
2011-04-26 18:52:18 -04:00
|
|
|
add_custom_background();
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-11 02:30:59 -04:00
|
|
|
// This theme uses Featured Images (also known as post thumbnails) for per-post/per-page Custom Header images
|
2011-04-26 18:52:18 -04:00
|
|
|
add_theme_support( 'post-thumbnails' );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-22 15:09:23 -04:00
|
|
|
// The next four constants set how Twenty Eleven supports custom headers.
|
2011-06-11 02:30:59 -04:00
|
|
|
|
|
|
|
// The default header text color
|
2011-04-26 18:52:18 -04:00
|
|
|
define( 'HEADER_TEXTCOLOR', '000' );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-22 15:09:23 -04:00
|
|
|
// By leaving empty, we allow for random image rotation.
|
2011-06-11 11:44:06 -04:00
|
|
|
define( 'HEADER_IMAGE', '' );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-11 02:30:59 -04:00
|
|
|
// The height and width of your custom header.
|
2011-04-26 18:52:18 -04:00
|
|
|
// Add a filter to twentyeleven_header_image_width and twentyeleven_header_image_height to change these values.
|
|
|
|
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyeleven_header_image_width', 1000 ) );
|
2011-05-06 20:31:27 -04:00
|
|
|
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyeleven_header_image_height', 288 ) );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-04-26 18:52:18 -04:00
|
|
|
// We'll be using post thumbnails for custom header images on posts and pages.
|
2011-06-11 02:30:59 -04:00
|
|
|
// We want them to be the size of the header image that we just defined
|
2011-04-26 18:52:18 -04:00
|
|
|
// Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
|
|
|
|
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-04-26 18:52:18 -04:00
|
|
|
// Add Twenty Eleven's custom image sizes
|
2011-06-11 02:30:59 -04:00
|
|
|
add_image_size( 'large-feature', HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); // Used for large feature (header) images
|
2011-04-28 20:19:02 -04:00
|
|
|
add_image_size( 'small-feature', 500, 300 ); // Used for featured posts if a large-feature doesn't exist
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-06-22 15:09:23 -04:00
|
|
|
// Turn on random header image rotation by default.
|
|
|
|
add_theme_support( 'custom-header', array( 'random-default' => true ) );
|
|
|
|
|
2011-04-26 18:52:18 -04:00
|
|
|
// Add a way for the custom header to be styled in the admin panel that controls
|
|
|
|
// custom headers. See twentyeleven_admin_header_style(), below.
|
|
|
|
add_custom_image_header( 'twentyeleven_header_style', 'twentyeleven_admin_header_style', 'twentyeleven_admin_header_image' );
|
|
|
|
|
|
|
|
// ... and thus ends the changeable header business.
|
2011-04-27 17:44:09 -04:00
|
|
|
|
|
|
|
// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
|
|
|
|
register_default_headers( array(
|
|
|
|
'wheel' => array(
|
|
|
|
'url' => '%s/images/headers/wheel.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/wheel-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Wheel', 'twentyeleven' )
|
|
|
|
),
|
|
|
|
'shore' => array(
|
|
|
|
'url' => '%s/images/headers/shore.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/shore-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Shore', 'twentyeleven' )
|
|
|
|
),
|
|
|
|
'trolley' => array(
|
|
|
|
'url' => '%s/images/headers/trolley.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/trolley-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Trolley', 'twentyeleven' )
|
|
|
|
),
|
|
|
|
'pine-cone' => array(
|
|
|
|
'url' => '%s/images/headers/pine-cone.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/pine-cone-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Pine Cone', 'twentyeleven' )
|
|
|
|
),
|
|
|
|
'chessboard' => array(
|
|
|
|
'url' => '%s/images/headers/chessboard.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/chessboard-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Chessboard', 'twentyeleven' )
|
|
|
|
),
|
|
|
|
'lanterns' => array(
|
|
|
|
'url' => '%s/images/headers/lanterns.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/lanterns-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Lanterns', 'twentyeleven' )
|
2011-05-03 16:16:34 -04:00
|
|
|
),
|
|
|
|
'willow' => array(
|
|
|
|
'url' => '%s/images/headers/willow.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/willow-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Willow', 'twentyeleven' )
|
|
|
|
),
|
|
|
|
'hanoi' => array(
|
|
|
|
'url' => '%s/images/headers/hanoi.jpg',
|
|
|
|
'thumbnail_url' => '%s/images/headers/hanoi-thumbnail.jpg',
|
|
|
|
/* translators: header image description */
|
|
|
|
'description' => __( 'Hanoi Plant', 'twentyeleven' )
|
2011-04-27 17:44:09 -04:00
|
|
|
)
|
|
|
|
) );
|
2011-04-26 18:52:18 -04:00
|
|
|
}
|
|
|
|
endif; // twentyeleven_setup
|
2011-04-20 17:46:33 -04:00
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyeleven_header_style' ) ) :
|
|
|
|
/**
|
|
|
|
* Styles the header image and text displayed on the blog
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
*/
|
|
|
|
function twentyeleven_header_style() {
|
2011-04-26 18:52:18 -04:00
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
// If no custom options for text are set, let's bail
|
|
|
|
// get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value
|
|
|
|
if ( HEADER_TEXTCOLOR == get_header_textcolor() )
|
|
|
|
return;
|
|
|
|
// If we get this far, we have custom styles. Let's do this.
|
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
<?php
|
|
|
|
// Has the text been hidden?
|
|
|
|
if ( 'blank' == get_header_textcolor() ) :
|
|
|
|
?>
|
|
|
|
#site-title,
|
|
|
|
#site-description {
|
|
|
|
position: absolute !important;
|
|
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
}
|
|
|
|
<?php
|
|
|
|
// If the user has set a custom color for the text use that
|
|
|
|
else :
|
|
|
|
?>
|
|
|
|
#site-title a,
|
|
|
|
#site-description {
|
|
|
|
color: #<?php echo get_header_textcolor(); ?> !important;
|
|
|
|
}
|
|
|
|
<?php endif; ?>
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
2011-04-26 18:52:18 -04:00
|
|
|
endif; // twentyeleven_header_style
|
2011-04-20 17:46:33 -04:00
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyeleven_admin_header_style' ) ) :
|
|
|
|
/**
|
|
|
|
* Styles the header image displayed on the Appearance > Header admin panel.
|
|
|
|
*
|
|
|
|
* Referenced via add_custom_image_header() in twentyeleven_setup().
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
*/
|
|
|
|
function twentyeleven_admin_header_style() {
|
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
.appearance_page_custom-header #headimg {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
#headimg h1,
|
|
|
|
#desc {
|
|
|
|
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
|
|
|
|
}
|
|
|
|
#headimg h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#headimg h1 a {
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 36px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
#desc {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 23px;
|
|
|
|
padding: 0 0 3em;
|
|
|
|
}
|
|
|
|
<?php
|
|
|
|
// If the user has set a custom color for the text use that
|
|
|
|
if ( get_header_textcolor() != HEADER_TEXTCOLOR ) :
|
|
|
|
?>
|
|
|
|
#site-title a,
|
|
|
|
#site-description {
|
|
|
|
color: #<?php echo get_header_textcolor(); ?>;
|
|
|
|
}
|
|
|
|
<?php endif; ?>
|
|
|
|
#headimg img {
|
|
|
|
max-width: 1000px;
|
|
|
|
height: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
2011-04-26 18:52:18 -04:00
|
|
|
endif; // twentyeleven_admin_header_style
|
2011-04-20 17:46:33 -04:00
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyeleven_admin_header_image' ) ) :
|
|
|
|
/**
|
|
|
|
* Custom header image markup displayed on the Appearance > Header admin panel.
|
|
|
|
*
|
|
|
|
* Referenced via add_custom_image_header() in twentyeleven_setup().
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
*/
|
|
|
|
function twentyeleven_admin_header_image() { ?>
|
|
|
|
<div id="headimg">
|
|
|
|
<?php
|
|
|
|
if ( 'blank' == get_theme_mod( 'header_textcolor', HEADER_TEXTCOLOR ) || '' == get_theme_mod( 'header_textcolor', HEADER_TEXTCOLOR ) )
|
|
|
|
$style = ' style="display:none;"';
|
|
|
|
else
|
|
|
|
$style = ' style="color:#' . get_theme_mod( 'header_textcolor', HEADER_TEXTCOLOR ) . ';"';
|
|
|
|
?>
|
2011-06-10 17:57:18 -04:00
|
|
|
<h1><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
|
2011-04-20 17:46:33 -04:00
|
|
|
<div id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
|
2011-04-29 18:22:19 -04:00
|
|
|
<?php $header_image = get_header_image();
|
|
|
|
if ( ! empty( $header_image ) ) : ?>
|
2011-05-22 17:25:42 -04:00
|
|
|
<img src="<?php echo esc_url( $header_image ); ?>" alt="" />
|
2011-04-29 18:22:19 -04:00
|
|
|
<?php endif; ?>
|
2011-04-20 17:46:33 -04:00
|
|
|
</div>
|
|
|
|
<?php }
|
2011-04-26 18:52:18 -04:00
|
|
|
endif; // twentyeleven_admin_header_image
|
2011-04-20 17:46:33 -04:00
|
|
|
|
|
|
|
/**
|
2011-05-25 13:18:23 -04:00
|
|
|
* Sets the post excerpt length to 40 words.
|
2011-04-20 17:46:33 -04:00
|
|
|
*
|
|
|
|
* To override this length in a child theme, remove the filter and add your own
|
|
|
|
* function tied to the excerpt_length filter hook.
|
|
|
|
*/
|
|
|
|
function twentyeleven_excerpt_length( $length ) {
|
|
|
|
return 40;
|
|
|
|
}
|
|
|
|
add_filter( 'excerpt_length', 'twentyeleven_excerpt_length' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a "Continue Reading" link for excerpts
|
|
|
|
*/
|
|
|
|
function twentyeleven_continue_reading_link() {
|
2011-06-10 17:57:18 -04:00
|
|
|
return ' <a href="'. esc_url( get_permalink() ) . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) . '</a>';
|
2011-04-20 17:46:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and twentyeleven_continue_reading_link().
|
|
|
|
*
|
|
|
|
* To override this in a child theme, remove the filter and add your own
|
|
|
|
* function tied to the excerpt_more filter hook.
|
|
|
|
*/
|
|
|
|
function twentyeleven_auto_excerpt_more( $more ) {
|
|
|
|
return ' …' . twentyeleven_continue_reading_link();
|
|
|
|
}
|
|
|
|
add_filter( 'excerpt_more', 'twentyeleven_auto_excerpt_more' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a pretty "Continue Reading" link to custom post excerpts.
|
|
|
|
*
|
|
|
|
* To override this link in a child theme, remove the filter and add your own
|
|
|
|
* function tied to the get_the_excerpt filter hook.
|
|
|
|
*/
|
|
|
|
function twentyeleven_custom_excerpt_more( $output ) {
|
|
|
|
if ( has_excerpt() && ! is_attachment() ) {
|
|
|
|
$output .= twentyeleven_continue_reading_link();
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
add_filter( 'get_the_excerpt', 'twentyeleven_custom_excerpt_more' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
|
|
|
|
*/
|
|
|
|
function twentyeleven_page_menu_args( $args ) {
|
|
|
|
$args['show_home'] = true;
|
|
|
|
return $args;
|
|
|
|
}
|
|
|
|
add_filter( 'wp_page_menu_args', 'twentyeleven_page_menu_args' );
|
|
|
|
|
|
|
|
/**
|
2011-04-28 05:47:30 -04:00
|
|
|
* Register our sidebars and widgetized areas. Also register the default Epherma widget.
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-20 17:46:33 -04:00
|
|
|
*/
|
|
|
|
function twentyeleven_widgets_init() {
|
2011-04-28 05:47:30 -04:00
|
|
|
|
|
|
|
register_widget( 'Twenty_Eleven_Ephemera_Widget' );
|
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
register_sidebar( array(
|
|
|
|
'name' => __( 'Main Sidebar', 'twentyeleven' ),
|
|
|
|
'id' => 'sidebar-1',
|
|
|
|
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => "</aside>",
|
2011-06-23 19:03:46 -04:00
|
|
|
'before_title' => '<h3 class="widget-title">',
|
|
|
|
'after_title' => '</h3>',
|
2011-04-20 17:46:33 -04:00
|
|
|
) );
|
|
|
|
|
|
|
|
register_sidebar( array(
|
|
|
|
'name' => __( 'Showcase Sidebar', 'twentyeleven' ),
|
|
|
|
'id' => 'sidebar-2',
|
|
|
|
'description' => __( 'The sidebar for the optional Showcase Template', 'twentyeleven' ),
|
|
|
|
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => "</aside>",
|
2011-06-23 19:03:46 -04:00
|
|
|
'before_title' => '<h3 class="widget-title">',
|
|
|
|
'after_title' => '</h3>',
|
2011-04-20 17:46:33 -04:00
|
|
|
) );
|
|
|
|
|
|
|
|
register_sidebar( array(
|
|
|
|
'name' => __( 'Footer Area One', 'twentyeleven' ),
|
|
|
|
'id' => 'sidebar-3',
|
|
|
|
'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ),
|
|
|
|
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => "</aside>",
|
2011-06-23 19:03:46 -04:00
|
|
|
'before_title' => '<h3 class="widget-title">',
|
|
|
|
'after_title' => '</h3>',
|
2011-04-20 17:46:33 -04:00
|
|
|
) );
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
register_sidebar( array(
|
|
|
|
'name' => __( 'Footer Area Two', 'twentyeleven' ),
|
|
|
|
'id' => 'sidebar-4',
|
|
|
|
'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ),
|
|
|
|
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => "</aside>",
|
2011-06-23 19:03:46 -04:00
|
|
|
'before_title' => '<h3 class="widget-title">',
|
|
|
|
'after_title' => '</h3>',
|
2011-04-20 17:46:33 -04:00
|
|
|
) );
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
register_sidebar( array(
|
|
|
|
'name' => __( 'Footer Area Three', 'twentyeleven' ),
|
|
|
|
'id' => 'sidebar-5',
|
|
|
|
'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ),
|
|
|
|
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => "</aside>",
|
2011-06-23 19:03:46 -04:00
|
|
|
'before_title' => '<h3 class="widget-title">',
|
|
|
|
'after_title' => '</h3>',
|
2011-04-20 17:46:33 -04:00
|
|
|
) );
|
|
|
|
}
|
2011-04-28 05:47:30 -04:00
|
|
|
add_action( 'widgets_init', 'twentyeleven_widgets_init' );
|
2011-04-20 17:46:33 -04:00
|
|
|
|
2011-11-10 13:41:05 -05:00
|
|
|
if ( ! function_exists( 'twentyeleven_content_nav' ) ) :
|
2011-04-20 17:46:33 -04:00
|
|
|
/**
|
|
|
|
* Display navigation to next/previous pages when applicable
|
|
|
|
*/
|
2011-04-26 18:52:18 -04:00
|
|
|
function twentyeleven_content_nav( $nav_id ) {
|
2011-04-20 17:46:33 -04:00
|
|
|
global $wp_query;
|
|
|
|
|
|
|
|
if ( $wp_query->max_num_pages > 1 ) : ?>
|
|
|
|
<nav id="<?php echo $nav_id; ?>">
|
2011-06-23 19:03:46 -04:00
|
|
|
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
|
2011-04-20 17:46:33 -04:00
|
|
|
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyeleven' ) ); ?></div>
|
|
|
|
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></div>
|
|
|
|
</nav><!-- #nav-above -->
|
|
|
|
<?php endif;
|
|
|
|
}
|
2011-11-10 13:41:05 -05:00
|
|
|
endif; // twentyeleven_content_nav
|
2011-04-20 17:46:33 -04:00
|
|
|
|
|
|
|
/**
|
2011-05-19 04:31:01 -04:00
|
|
|
* Return the URL for the first link found in the post content.
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
* @return string|bool URL or false when no link is present.
|
2011-04-20 17:46:33 -04:00
|
|
|
*/
|
|
|
|
function twentyeleven_url_grabber() {
|
2011-05-19 04:31:01 -04:00
|
|
|
if ( ! preg_match( '/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) )
|
2011-04-20 17:46:33 -04:00
|
|
|
return false;
|
|
|
|
|
2011-05-19 04:31:01 -04:00
|
|
|
return esc_url_raw( $matches[1] );
|
2011-04-20 17:46:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Count the number of footer sidebars to enable dynamic classes for the footer
|
|
|
|
*/
|
|
|
|
function twentyeleven_footer_sidebar_class() {
|
|
|
|
$count = 0;
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
if ( is_active_sidebar( 'sidebar-3' ) )
|
|
|
|
$count++;
|
|
|
|
|
|
|
|
if ( is_active_sidebar( 'sidebar-4' ) )
|
|
|
|
$count++;
|
|
|
|
|
|
|
|
if ( is_active_sidebar( 'sidebar-5' ) )
|
|
|
|
$count++;
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-28 06:13:38 -04:00
|
|
|
$class = '';
|
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
switch ( $count ) {
|
|
|
|
case '1':
|
|
|
|
$class = 'one';
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
$class = 'two';
|
|
|
|
break;
|
|
|
|
case '3':
|
|
|
|
$class = 'three';
|
|
|
|
break;
|
|
|
|
}
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-28 06:13:38 -04:00
|
|
|
if ( $class )
|
2011-04-20 17:46:33 -04:00
|
|
|
echo 'class="' . $class . '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyeleven_comment' ) ) :
|
|
|
|
/**
|
|
|
|
* Template for comments and pingbacks.
|
|
|
|
*
|
|
|
|
* To override this walker in a child theme without modifying the comments template
|
|
|
|
* simply create your own twentyeleven_comment(), and that function will be used instead.
|
|
|
|
*
|
|
|
|
* Used as a callback by wp_list_comments() for displaying the comments.
|
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
*/
|
|
|
|
function twentyeleven_comment( $comment, $args, $depth ) {
|
|
|
|
$GLOBALS['comment'] = $comment;
|
|
|
|
switch ( $comment->comment_type ) :
|
2011-04-27 00:38:36 -04:00
|
|
|
case 'pingback' :
|
|
|
|
case 'trackback' :
|
|
|
|
?>
|
|
|
|
<li class="post pingback">
|
2011-06-30 17:57:50 -04:00
|
|
|
<p><?php _e( 'Pingback:', 'twentyeleven' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?></p>
|
2011-04-27 00:38:36 -04:00
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
default :
|
2011-04-20 17:46:33 -04:00
|
|
|
?>
|
|
|
|
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
|
|
|
<article id="comment-<?php comment_ID(); ?>" class="comment">
|
|
|
|
<footer class="comment-meta">
|
|
|
|
<div class="comment-author vcard">
|
|
|
|
<?php
|
|
|
|
$avatar_size = 68;
|
|
|
|
if ( '0' != $comment->comment_parent )
|
|
|
|
$avatar_size = 39;
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
echo get_avatar( $comment, $avatar_size );
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-06-13 10:50:35 -04:00
|
|
|
/* translators: 1: comment author, 2: date and time */
|
|
|
|
printf( __( '%1$s on %2$s <span class="says">said:</span>', 'twentyeleven' ),
|
2011-05-25 11:29:26 -04:00
|
|
|
sprintf( '<span class="fn">%s</span>', get_comment_author_link() ),
|
2011-06-13 10:50:35 -04:00
|
|
|
sprintf( '<a href="%1$s"><time pubdate datetime="%2$s">%3$s</time></a>',
|
|
|
|
esc_url( get_comment_link( $comment->comment_ID ) ),
|
|
|
|
get_comment_time( 'c' ),
|
2011-06-13 10:54:14 -04:00
|
|
|
/* translators: 1: date, 2: time */
|
|
|
|
sprintf( __( '%1$s at %2$s', 'twentyeleven' ), get_comment_date(), get_comment_time() )
|
2011-06-13 10:50:35 -04:00
|
|
|
)
|
2011-04-20 17:46:33 -04:00
|
|
|
);
|
|
|
|
?>
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-06-30 17:57:50 -04:00
|
|
|
<?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
|
2011-04-20 17:46:33 -04:00
|
|
|
</div><!-- .comment-author .vcard -->
|
|
|
|
|
|
|
|
<?php if ( $comment->comment_approved == '0' ) : ?>
|
2011-04-28 06:13:38 -04:00
|
|
|
<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyeleven' ); ?></em>
|
2011-04-20 17:46:33 -04:00
|
|
|
<br />
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<div class="comment-content"><?php comment_text(); ?></div>
|
|
|
|
|
|
|
|
<div class="reply">
|
2011-06-27 18:17:19 -04:00
|
|
|
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply <span>↓</span>', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
|
2011-04-20 17:46:33 -04:00
|
|
|
</div><!-- .reply -->
|
|
|
|
</article><!-- #comment-## -->
|
|
|
|
|
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
endswitch;
|
|
|
|
}
|
2011-06-10 17:57:18 -04:00
|
|
|
endif; // ends check for twentyeleven_comment()
|
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyeleven_posted_on' ) ) :
|
|
|
|
/**
|
|
|
|
* Prints HTML with meta information for the current post-date/time and author.
|
2011-06-11 02:30:59 -04:00
|
|
|
* Create your own twentyeleven_posted_on to override in a child theme
|
2011-06-10 17:57:18 -04:00
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
*/
|
|
|
|
function twentyeleven_posted_on() {
|
|
|
|
printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ),
|
|
|
|
esc_url( get_permalink() ),
|
|
|
|
esc_attr( get_the_time() ),
|
|
|
|
esc_attr( get_the_date( 'c' ) ),
|
|
|
|
esc_html( get_the_date() ),
|
|
|
|
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
2011-12-10 14:18:51 -05:00
|
|
|
esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ),
|
|
|
|
get_the_author()
|
2011-06-10 17:57:18 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
|
|
|
|
/**
|
2011-06-11 02:30:59 -04:00
|
|
|
* Adds two classes to the array of body classes.
|
|
|
|
* The first is if the site has only had one author with published posts.
|
|
|
|
* The second is if a singular post being displayed
|
2011-06-10 17:57:18 -04:00
|
|
|
*
|
|
|
|
* @since Twenty Eleven 1.0
|
|
|
|
*/
|
2011-06-11 02:30:59 -04:00
|
|
|
function twentyeleven_body_classes( $classes ) {
|
2011-06-10 17:57:18 -04:00
|
|
|
|
2011-12-10 14:18:51 -05:00
|
|
|
if ( function_exists( 'is_multi_author' ) && ! is_multi_author() )
|
2011-06-10 17:57:18 -04:00
|
|
|
$classes[] = 'single-author';
|
2011-06-11 02:30:59 -04:00
|
|
|
|
|
|
|
if ( is_singular() && ! is_home() && ! is_page_template( 'showcase.php' ) && ! is_page_template( 'sidebar-page.php' ) )
|
|
|
|
$classes[] = 'singular';
|
|
|
|
|
2011-06-10 17:57:18 -04:00
|
|
|
return $classes;
|
|
|
|
}
|
2011-06-11 02:30:59 -04:00
|
|
|
add_filter( 'body_class', 'twentyeleven_body_classes' );
|
|
|
|
|