2010-02-07 17:16:26 +01:00
< ? php
// Set the content width based on the Theme CSS
2010-02-14 02:00:22 +01:00
$content_width = apply_filters ( 'twentyten_content_width' , 640 );
2010-02-07 17:16:26 +01:00
2010-02-08 19:02:23 +01:00
// Your Changeable header business starts here
2010-02-07 17:16:26 +01:00
// No CSS, just IMG call
define ( 'HEADER_TEXTCOLOR' , '' );
define ( 'HEADER_IMAGE' , '%s/images/header-1.jpg' ); // %s is theme dir uri
define ( 'HEADER_IMAGE_WIDTH' , apply_filters ( 'twentyten_header_image_width' , 940 ) );
define ( 'HEADER_IMAGE_HEIGHT' , apply_filters ( 'twentyten_header_image_height' , 198 ) );
define ( 'NO_HEADER_TEXT' , true );
function twentyten_admin_header_style () {
?>
< style type = " text/css " >
#headimg {
height : < ? php echo HEADER_IMAGE_HEIGHT ; ?> px;
width : < ? php echo HEADER_IMAGE_WIDTH ; ?> px;
}
#headimg h1, #headimg #desc {
display : none ;
}
</ style >
< ? php
}
2010-02-14 02:00:22 +01:00
add_custom_image_header ( '' , 'twentyten_admin_header_style' );
2010-02-07 17:16:26 +01:00
// and thus ends the changeable header business
2010-02-09 21:37:12 +01:00
add_custom_background ();
2010-02-07 17:16:26 +01:00
// This theme needs post thumbnails
add_theme_support ( 'post-thumbnails' );
// We'll be using them for custom header images on posts and pages
// so we want them to be 940 pixels wide by 198 pixels tall (larger images will be auto-cropped to fit)
set_post_thumbnail_size ( HEADER_IMAGE_WIDTH , HEADER_IMAGE_HEIGHT , true );
2010-02-14 09:07:55 +01:00
// Add default posts and comments RSS feed links to head.
automatic_feed_links ();
2010-02-07 17:16:26 +01:00
// Make theme available for translation
// Translations can be filed in the /languages/ directory
load_theme_textdomain ( 'twentyten' , TEMPLATEPATH . '/languages' );
$locale = get_locale ();
$locale_file = TEMPLATEPATH . " /languages/ $locale .php " ;
if ( is_readable ( $locale_file ) )
2010-02-14 02:00:22 +01:00
require_once ( $locale_file );
2010-02-07 17:16:26 +01:00
// Get the page number
2010-02-14 02:00:22 +01:00
function twentyten_get_page_number () {
2010-02-08 21:28:13 +01:00
if ( get_query_var ( 'paged' ) )
2010-02-14 02:00:22 +01:00
echo ' | ' . __ ( 'Page ' , 'twentyten' ) . get_query_var ( 'paged' );
2010-02-13 14:35:03 +01:00
}
2010-02-07 17:16:26 +01:00
// Control excerpt length
2010-02-14 02:00:22 +01:00
function twentyten_new_excerpt_length ( $length ) {
2010-02-07 17:16:26 +01:00
return 40 ;
}
2010-02-14 02:00:22 +01:00
add_filter ( 'excerpt_length' , 'twentyten_new_excerpt_length' );
2010-02-07 17:16:26 +01:00
// Make a nice read more link on excerpts
2010-02-14 02:00:22 +01:00
function twentyten_new_excerpt_more ( $more ) {
2010-02-08 21:28:13 +01:00
return ' … <a href="' . get_permalink () . '">' . 'Continue reading <span class="meta-nav">→</span>' . '</a>' ;
2010-02-07 17:16:26 +01:00
}
2010-02-14 02:00:22 +01:00
add_filter ( 'excerpt_more' , 'twentyten_new_excerpt_more' );
2010-02-07 17:16:26 +01:00
// Template for comments and pingbacks
2010-02-14 02:00:22 +01:00
function twentyten_list_comment ( $comment , $args , $depth ) {
$GLOBALS [ 'comment' ] = $comment ; ?>
< ? php if ( '' == $comment -> comment_type ) { ?>
< li < ? php comment_class (); ?> id="li-comment-<?php comment_ID(); ?>">
2010-02-07 17:16:26 +01:00
< div id = " comment-<?php comment_ID(); ?> " >
< div class = " comment-author vcard " >
2010-02-14 02:00:22 +01:00
< ? php echo get_avatar ( $comment , 40 ); ?>
< ? php printf ( __ ( '<cite class="fn">%s</cite> <span class="says">says:</span>' ), get_comment_author_link () ); ?>
2010-02-07 17:16:26 +01:00
</ div >
2010-02-14 02:00:22 +01:00
< ? php if ( $comment -> comment_approved == '0' ) : ?>
< em >< ? php _e ( 'Your comment is awaiting moderation.' , 'twentyten' ); ?> </em>
2010-02-07 17:16:26 +01:00
< br />
< ? php endif ; ?>
2010-02-14 02:00:22 +01:00
< div class = " comment-meta commentmetadata " >< a href = " <?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?> " >< ? php printf ( __ ( '%1$s at %2$s' ), get_comment_date (), get_comment_time ()); ?> </a><?php edit_comment_link(__('(Edit)', 'twentyten'),' ',''); ?></div>
2010-02-07 17:16:26 +01:00
2010-02-14 02:00:22 +01:00
< div class = " comment-body " >< ? php comment_text (); ?> </div>
2010-02-07 17:16:26 +01:00
< div class = " reply " >
2010-02-14 02:00:22 +01:00
< ? php comment_reply_link ( array_merge ( $args , array ( 'depth' => $depth , 'max_depth' => $args [ 'max_depth' ])) ); ?>
2010-02-07 17:16:26 +01:00
</ div >
2010-02-08 19:02:23 +01:00
</ div >
2010-02-07 17:16:26 +01:00
< ? php } else { ?>
< li class = " post pingback " >
2010-02-14 02:00:22 +01:00
< p >< ? php _e ( 'Pingback: ' , 'twentyten' ); ?> <?php comment_author_link(); ?><?php edit_comment_link ( __('edit', 'twentyten'), ' ', '' ); ?></p>
2010-02-07 17:16:26 +01:00
< ? php }
}
// Make the Visual Editor styles match the theme's styles
2010-02-14 02:00:22 +01:00
function twentyten_my_editor_style ( $url ) {
2010-02-14 02:12:51 +01:00
if ( ! empty ( $url ) )
$url .= ',' ;
2010-02-07 17:16:26 +01:00
// Change the path here if using sub-directory
$url .= trailingslashit ( get_stylesheet_directory_uri () ) . 'editor-style.css' ;
return $url ;
}
2010-02-14 02:00:22 +01:00
add_filter ( 'mce_css' , 'twentyten_my_editor_style' );
2010-02-07 17:16:26 +01:00
// Remove inline styles on gallery shortcode
2010-02-14 02:00:22 +01:00
function twentyten_remove_gallery_css () {
2010-02-07 17:16:26 +01:00
return " <div class='gallery'> " ;
2010-02-08 21:28:13 +01:00
}
2010-02-14 02:00:22 +01:00
add_filter ( 'gallery_style' , 'twentyten_remove_gallery_css' );
2010-02-14 11:02:38 +01:00
function twentyten_cat_list () {
return twentyten_term_list ( 'category' , ', ' , __ ( 'Posted in %s' , 'twentyten' ), __ ( 'Also posted in %s' , 'twentyten' ) );
}
function twentyten_tag_list () {
return twentyten_term_list ( 'post_tag' , ', ' , __ ( 'Tagged %s' , 'twentyten' ), __ ( 'Also tagged %s' , 'twentyten' ) );
}
function twentyten_term_list ( $taxonomy , $glue = ', ' , $text = '' , $also_text = '' ) {
global $wp_query , $post ;
$current_term = $wp_query -> queried_object ;
$terms = wp_get_object_terms ( $post -> ID , $taxonomy );
// If we're viewing a Taxonomy page..
if ( isset ( $current_term -> taxonomy ) && $taxonomy == $current_term -> taxonomy ) {
// Remove the term from display.
foreach ( ( array ) $terms as $key => $term ) {
if ( $term -> term_id == $current_term -> term_id ) {
unset ( $terms [ $key ]);
break ;
}
2010-02-07 17:16:26 +01:00
}
2010-02-14 11:02:38 +01:00
// Change to Also text as we've now removed something from the terms list.
$text = $also_text ;
2010-02-07 17:16:26 +01:00
}
2010-02-14 11:02:38 +01:00
$tlist = array ();
$rel = 'category' == $taxonomy ? 'rel="category"' : 'rel="tag"' ;
foreach ( ( array ) $terms as $term ) {
$tlist [] = '<a href="' . get_term_link ( $term , $taxonomy ) . '" title="' . esc_attr ( sprintf ( __ ( 'View all posts in %s' , 'twentyten' ), $term -> name ) ) . '" ' . $rel . '>' . $term -> name . '</a>' ;
2010-02-07 17:16:26 +01:00
}
2010-02-14 11:02:38 +01:00
if ( ! empty ( $tlist ) )
return sprintf ( $text , join ( $glue , $tlist ));
return '' ;
}
2010-02-07 17:16:26 +01:00
// Register widgetized areas
2010-02-14 02:00:22 +01:00
function twentyten_widgets_init () {
2010-02-07 17:16:26 +01:00
// Area 1
2010-02-14 02:00:22 +01:00
register_sidebar ( array (
2010-02-07 17:16:26 +01:00
'name' => 'Primary Widget Area' ,
'id' => 'primary-widget-area' ,
2010-02-14 02:00:22 +01:00
'description' => __ ( 'The primary widget area' , 'twentyten' ),
2010-02-07 17:16:26 +01:00
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => " </li> " ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
) );
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
// Area 2
2010-02-14 02:00:22 +01:00
register_sidebar ( array (
2010-02-07 17:16:26 +01:00
'name' => 'Secondary Widget Area' ,
2010-02-08 19:02:23 +01:00
'id' => 'secondary-widget-area' ,
2010-02-14 02:00:22 +01:00
'description' => __ ( 'The secondary widget area' , 'twentyten' ),
2010-02-07 17:16:26 +01:00
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => " </li> " ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
) );
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
// Area 3
2010-02-14 02:00:22 +01:00
register_sidebar ( array (
2010-02-07 17:16:26 +01:00
'name' => 'First Footer Widget Area' ,
2010-02-08 19:02:23 +01:00
'id' => 'first-footer-widget-area' ,
2010-02-14 02:00:22 +01:00
'description' => __ ( 'The first footer widget area' , 'twentyten' ),
2010-02-07 17:16:26 +01:00
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => " </li> " ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
2010-02-08 19:02:23 +01:00
) );
2010-02-07 17:16:26 +01:00
// Area 4
2010-02-14 02:00:22 +01:00
register_sidebar ( array (
2010-02-07 17:16:26 +01:00
'name' => 'Second Footer Widget Area' ,
2010-02-08 19:02:23 +01:00
'id' => 'second-footer-widget-area' ,
2010-02-14 02:00:22 +01:00
'description' => __ ( 'The second footer widget area' , 'twentyten' ),
2010-02-07 17:16:26 +01:00
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => " </li> " ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
2010-02-08 19:02:23 +01:00
) );
2010-02-07 17:16:26 +01:00
// Area 5
2010-02-14 02:00:22 +01:00
register_sidebar ( array (
2010-02-07 17:16:26 +01:00
'name' => 'Third Footer Widget Area' ,
2010-02-08 19:02:23 +01:00
'id' => 'third-footer-widget-area' ,
2010-02-14 02:00:22 +01:00
'description' => __ ( 'The third footer widget area' , 'twentyten' ),
2010-02-07 17:16:26 +01:00
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => " </li> " ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
2010-02-08 19:02:23 +01:00
) );
2010-02-07 17:16:26 +01:00
// Area 6
2010-02-14 02:00:22 +01:00
register_sidebar ( array (
2010-02-07 17:16:26 +01:00
'name' => 'Fourth Footer Widget Area' ,
2010-02-08 19:02:23 +01:00
'id' => 'fourth-footer-widget-area' ,
2010-02-14 02:00:22 +01:00
'description' => __ ( 'The fourth footer widget area' , 'twentyten' ),
2010-02-07 17:16:26 +01:00
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => " </li> " ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
2010-02-08 19:02:23 +01:00
) );
2010-02-07 17:16:26 +01:00
} // end theme_widgets_init
// Add all the groovy widget areas
2010-02-14 02:00:22 +01:00
add_action ( 'init' , 'twentyten_widgets_init' );