Changeset 13498
- Timestamp:
- 02/28/2010 11:43:04 AM (16 years ago)
- Location:
- trunk/wp-content/themes/twentyten
- Files:
-
- 9 edited
-
attachment.php (modified) (2 diffs)
-
category.php (modified) (1 diff)
-
comments.php (modified) (2 diffs)
-
header.php (modified) (2 diffs)
-
index.php (modified) (1 diff)
-
loop.php (modified) (2 diffs)
-
search.php (modified) (1 diff)
-
single.php (modified) (1 diff)
-
tag.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/attachment.php
r13157 r13498 12 12 13 13 <div class="entry-meta"> 14 <span class="meta-prep meta-prep-author"><?php _e( 'By ', 'twentyten' ); ?></span> 15 <span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta('ID') ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), $authordata->display_name ); ?>"><?php the_author(); ?></a></span> 16 <span class="meta-sep"><?php _e( ' | ', 'twentyten' ); ?></span> 17 <span class="meta-prep meta-prep-entry-date"><?php _e( 'Published ', 'twentyten' ); ?></span> 18 <span class="entry-date"><abbr class="published" title="<?php the_time() ?>"><?php echo get_the_date(); ?></abbr></span> 14 <?php 15 printf(__( '<span class="meta-prep meta-prep-author"> By </span> <span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 'twentyten'), 16 get_author_posts_url( get_the_author_meta('ID') ), 17 sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), 18 get_the_author() 19 ); 20 ?> 21 <span class="meta-sep"> | </span> 22 <?php 23 printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>', 'twentyten'), 24 esc_attr(get_the_time()), 25 get_the_date() 26 ); 27 ?> 19 28 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t" ); ?> 20 29 </div><!-- .entry-meta --> … … 43 52 44 53 <div class="entry-utility"> 45 <?php printf( __( 'This entry was posted in %1$s%2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' ), 46 get_the_category_list(', '), 47 get_the_tag_list( __( ' and tagged ', 'twentyten' ), ', ', '' ), 48 get_permalink(), 49 the_title_attribute('echo=0'), 50 get_post_comments_feed_link() ); ?> 54 <?php 55 $tag_list = get_the_tag_list(); 56 if ( '' != $tag_list ) { 57 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' ); 58 } else { 59 $utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' ); 60 } 61 printf( 62 $utility_text, 63 get_the_category_list(', '), 64 $tag_list, 65 get_permalink(), 66 the_title_attribute('echo=0'), 67 get_post_comments_feed_link() 68 ); 69 ?> 51 70 52 71 <?php if ( comments_open() && pings_open() ) : // Comments and trackbacks open ?> -
trunk/wp-content/themes/twentyten/category.php
r13218 r13498 4 4 <div id="content"> 5 5 6 <h1 class="page-title"><?php _e( 'Category Archives:', 'twentyten' ); ?> <span><?php single_cat_title(); ?></span></span></h1> 6 <h1 class="page-title"><?php 7 printf(__( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title('', false) . '</span>'); 8 ?></h1> 7 9 <?php $categorydesc = category_description(); if ( !empty($categorydesc) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?> 8 10 -
trunk/wp-content/themes/twentyten/comments.php
r13166 r13498 1 <?php2 // Do not delete these lines3 if ( ! defined('ABSPATH') )4 die ( __( 'Please do not load this page directly. Thanks!', 'twentyten' ) );5 ?>6 1 <div id="comments"> 7 2 <?php if ( post_password_required() ) : ?> … … 18 13 19 14 <?php if ( have_comments() ) : ?> 20 <h3 id="comments-title"><?php comments_number( __('No Responses to', 'twentyten'), __('One Response to', 'twentyten'), __('% Responses to', 'twentyten') );?> <em><?php the_title(); ?></em></h3> 15 <h3 id="comments-title"><?php comments_number( 16 sprintf(__('No Responses to %s', 'twentyten'), '<em>' . get_the_title() . '</em>'), 17 sprintf(__('One Response to %s', 'twentyten'), '<em>' . get_the_title() . '</em>'), 18 sprintf(__('%% Responses to %s', 'twentyten'), '<em>' . get_the_title() . '</em>') 19 ); ?> </h3> 21 20 22 21 <?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?> -
trunk/wp-content/themes/twentyten/header.php
r13368 r13498 2 2 <html <?php language_attributes(); ?>> 3 3 <head> 4 <title><?php5 if ( is_single() ) {4 <title><?php 5 if ( is_single() ) { 6 6 single_post_title(); echo ' | '; bloginfo('name'); 7 7 } elseif ( is_home() || is_front_page() ) { … … 16 16 wp_title(''); echo ' | '; bloginfo('name'); twentyten_the_page_number(); 17 17 } 18 ?></title>18 ?></title> 19 19 20 20 <meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> -
trunk/wp-content/themes/twentyten/index.php
r13146 r13498 4 4 <div id="content"> 5 5 6 <?php if ( have_posts() ) : 7 get_generic_template( 'loop', 'index' ); 8 else : ?> 9 <h2><?php _e( 'Not Found', 'twentyten' ); ?></h2> 10 <div class="entry-content"> 11 <p><?php _e( 'Apologies, but we were unable to find what you were looking for. Perhaps searching will help.', 'twentyten' ); ?></p> 12 <?php get_search_form(); ?> 13 </div> 14 <?php endif; ?> 6 <?php get_generic_template( 'loop', 'index' ); ?> 15 7 16 8 </div><!-- #content --> -
trunk/wp-content/themes/twentyten/loop.php
r13255 r13498 1 <?php if ( $wp_query->max_num_pages > 1 ) {?>1 <?php if ( $wp_query->max_num_pages > 1 ) : ?> 2 2 <div id="nav-above" class="navigation"> 3 3 <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'twentyten' )); ?></div> 4 4 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )); ?></div> 5 5 </div><!-- #nav-above --> 6 <?php }?>6 <?php endif; ?> 7 7 8 8 <?php if ( ! have_posts() ) : ?> … … 17 17 18 18 <?php while ( have_posts() ) : the_post(); ?> 19 <?php if ( in_category( 'Gallery' ) ) {?>20 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>21 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>19 <?php if ( in_category( 'Gallery' ) ) : ?> 20 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 21 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 22 22 23 <div class="entry-meta"> 24 <span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span> 25 <a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a> 26 <span class="meta-sep"> <?php _e( 'by ', 'twentyten' ); ?> </span> 27 <span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta('ID') ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span> 28 </div><!-- .entry-meta --> 23 <div class="entry-meta"> 24 <?php 25 printf(__( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten'), 26 get_permalink(), 27 esc_attr( get_the_time() ), 28 get_the_date(), 29 get_author_posts_url( get_the_author_meta('ID') ), 30 sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), 31 get_the_author() 32 ); 33 ?> 34 </div><!-- .entry-meta --> 29 35 30 <div class="entry-content"> 31 <div class="gallery-thumb"> 32 <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php 33 $images =& get_children( array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999) ); 34 $total_images = count($images); 35 $image = array_shift($images); 36 echo wp_get_attachment_image( $image->ID, 'thumbnail' ); 37 ?></a> 38 </div> 39 <p><em><?php printf( __('This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten'), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ) . '" rel="bookmark"', $total_images ); ?></em></p> 36 <div class="entry-content"> 37 <div class="gallery-thumb"> 38 <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php 39 $images = get_children( array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999) ); 40 $total_images = count($images); 41 $image = array_shift($images); 42 echo wp_get_attachment_image( $image->ID, 'thumbnail' ); 43 ?></a> 44 </div> 45 <p><em><?php printf( __('This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten'), 46 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ) . '" rel="bookmark"', 47 $total_images 48 ); ?></em></p> 40 49 41 <?php the_excerpt( '' ); ?>42 </div><!-- .entry-content -->50 <?php the_excerpt( '' ); ?> 51 </div><!-- .entry-content --> 43 52 44 <div class="entry-utility">45 <?php46 $category_id = get_cat_ID( 'Gallery' );47 $category_link = get_category_link( $category_id );48 ?>49 <a href="<?php echo $category_link; ?>" title="<?php esc_attr_e('View posts in the Gallery category', 'twentyten'); ?>"><?php _e('More Galleries', 'twentyten'); ?></a>50 <span class="meta-sep"><?php _e( ' | ', 'twentyten' ); ?></span>51 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>52 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>53 </div><!-- #entry-utility -->54 </div>53 <div class="entry-utility"> 54 <?php 55 $category_id = get_cat_ID( 'Gallery' ); 56 $category_link = get_category_link( $category_id ); 57 ?> 58 <a href="<?php echo $category_link; ?>" title="<?php esc_attr_e('View posts in the Gallery category', 'twentyten'); ?>"><?php _e('More Galleries', 'twentyten'); ?></a> 59 <span class="meta-sep"> | </span> 60 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 61 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?> 62 </div><!-- #entry-utility --> 63 </div> 55 64 56 65 57 <?php } elseif ( in_category( 'asides' ) ) {?>58 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>59 <?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?>60 <div class="entry-summary">61 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>62 </div><!-- .entry-summary -->63 <?php else : ?>64 <div class="entry-content">65 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>66 </div><!-- .entry-content -->67 <?php endif; ?>66 <?php elseif ( in_category( 'asides' ) ) : ?> 67 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 68 <?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?> 69 <div class="entry-summary"> 70 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 71 </div><!-- .entry-summary --> 72 <?php else : ?> 73 <div class="entry-content"> 74 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 75 </div><!-- .entry-content --> 76 <?php endif; ?> 68 77 69 <div class="entry-utility"> 70 <span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span> 71 <a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a> 72 <span class="meta-sep"> <?php _e( ' by ', 'twentyten' ); ?> </span> 73 <span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta('ID') ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span> 74 <span class="meta-sep"><?php _e( ' | ', 'twentyten' ); ?></span> 75 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 76 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?> 77 </div><!-- #entry-utility --> 78 </div><!-- #post-<?php the_ID(); ?> --> 78 <div class="entry-utility"> 79 <?php 80 printf(__( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten'), 81 get_permalink(), 82 esc_attr( get_the_time() ), 83 get_the_date(), 84 get_author_posts_url( get_the_author_meta('ID') ), 85 sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), 86 get_the_author() 87 ); 88 ?> 89 <span class="meta-sep"> | </span> 90 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 91 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?> 92 </div><!-- #entry-utility --> 93 </div><!-- #post-<?php the_ID(); ?> --> 79 94 80 95 81 <?php } else {?>82 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>83 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>96 <?php else : ?> 97 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 98 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 84 99 85 <div class="entry-meta"> 86 <span class="meta-prep meta-prep-author"><?php _e('Posted on ', 'twentyten'); ?></span> 87 <a href="<?php 88 the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a> 89 <span class="meta-sep"><?php _e( ' by ', 'twentyten' ); ?></span> 90 <span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta('ID') ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span> 91 </div><!-- .entry-meta --> 100 <div class="entry-meta"> 101 <?php 102 printf(__( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten'), 103 get_permalink(), 104 esc_attr( get_the_time() ), 105 get_the_date(), 106 get_author_posts_url( get_the_author_meta('ID') ), 107 sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), 108 get_the_author() 109 ); 110 ?> 111 </div><!-- .entry-meta --> 92 112 93 <?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?>94 <div class="entry-summary">95 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>96 </div><!-- .entry-summary -->97 <?php else : ?>98 <div class="entry-content">99 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>100 <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>101 </div><!-- .entry-content -->102 <?php endif; ?>113 <?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?> 114 <div class="entry-summary"> 115 <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 116 </div><!-- .entry-summary --> 117 <?php else : ?> 118 <div class="entry-content"> 119 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 120 <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?> 121 </div><!-- .entry-content --> 122 <?php endif; ?> 103 123 104 <div class="entry-utility">105 <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php echo twentyten_cat_list(); ?></span></span>106 <span class="meta-sep"><?php _e( ' | ', 'twentyten' ); ?></span>107 <?php $tags_text = twentyten_tag_list(); ?>108 <?php if ( !empty($tags_text) ) : ?>109 <span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links"><?php echo $tags_text; ?></span></span>110 <span class="meta-sep"><?php _e( ' | ', 'twentyten' ); ?></span>111 <?php endif; //$tags_text ?>112 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>113 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>114 </div><!-- #entry-utility -->115 </div><!-- #post-<?php the_ID(); ?> -->124 <div class="entry-utility"> 125 <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php echo twentyten_cat_list(); ?></span></span> 126 <span class="meta-sep"> | </span> 127 <?php $tags_text = twentyten_tag_list(); ?> 128 <?php if ( !empty($tags_text) ) : ?> 129 <span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links"><?php echo $tags_text; ?></span></span> 130 <span class="meta-sep"> | </span> 131 <?php endif; //$tags_text ?> 132 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 133 <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?> 134 </div><!-- #entry-utility --> 135 </div><!-- #post-<?php the_ID(); ?> --> 116 136 117 <?php comments_template( '', true ); ?>137 <?php comments_template( '', true ); ?> 118 138 119 <?php }?>139 <?php endif; // if different categories queried ?> 120 140 <?php endwhile; ?> 121 141 122 <?php if ( $wp_query->max_num_pages > 1 ) {?>142 <?php if ( $wp_query->max_num_pages > 1 ) : ?> 123 143 <div id="nav-below" class="navigation"> 124 144 <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'twentyten' )); ?></div> 125 145 <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' )); ?></div> 126 146 </div><!-- #nav-below --> 127 <?php }?>147 <?php endif; ?> -
trunk/wp-content/themes/twentyten/search.php
r13146 r13498 5 5 6 6 <?php if ( have_posts() ) : ?> 7 <h1 class="page-title"><?php _e( 'Search Results for: ', 'twentyten' ); ?><span><?php the_search_query(); ?></span></h1>7 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>'); ?></h1> 8 8 <?php get_generic_template( 'loop', 'search' ); ?> 9 9 <?php else : ?> -
trunk/wp-content/themes/twentyten/single.php
r13147 r13498 43 43 44 44 <div class="entry-utility"> 45 <?php printf( __( 'This entry was posted in %1$s%2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' ), 46 get_the_category_list(', '), 47 get_the_tag_list( __( ' and tagged ', 'twentyten' ), ', ', '' ), 48 get_permalink(), 49 the_title_attribute('echo=0'), 50 get_post_comments_feed_link() ); ?> 45 <?php 46 $tag_list = get_the_tag_list(); 47 if ( '' != $tag_list ) { 48 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' ); 49 } else { 50 $utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' ); 51 } 52 printf( 53 $utility_text, 54 get_the_category_list(', '), 55 $tag_list, 56 get_permalink(), 57 the_title_attribute('echo=0'), 58 get_post_comments_feed_link() 59 ); 60 ?> 51 61 52 62 <?php edit_post_link( __( 'Edit', 'twentyten' ), "\n\t\t\t\t\t<span class=\"edit-link\">", "</span>" ); ?> -
trunk/wp-content/themes/twentyten/tag.php
r13146 r13498 6 6 <?php the_post(); ?> 7 7 8 <h1 class="page-title"><?php _e( 'Tag Archives: ', 'twentyten' ); ?><span><?php single_tag_title(); ?></span></h1> 8 <h1 class="page-title"><?php 9 printf(__( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title('', false) . '</span>'); 10 ?></h1> 9 11 10 12 <?php rewind_posts(); ?>
Note: See TracChangeset
for help on using the changeset viewer.