section and everything up till
* * @package WordPress * @subpackage Twenty_Twelve * @since Twenty Twelve 1.0 */ ?> > <?php /**/ if ( is_404() ) printf( __('%1$s | %2$s', 'twentytwelve-child' ) , __( 'Page not Found' , 'twentytwelve-child' ), get_bloginfo('sitename')); elseif ( is_home() ) printf( __('%1$s | %2$s', 'twentytwelve-child' ) , get_bloginfo('description'), get_bloginfo('sitename')); elseif ( is_category() ) printf( __( 'Category Archives « %1$s » | %2$s', 'twentytwelve-child' ), single_cat_title( '', false ), get_bloginfo('sitename') ); elseif ( is_tag() ) printf( __( 'Tag Archives « %s » | %2$s', 'twentytwelve-child' ), single_tag_title( '', false ), get_bloginfo('sitename') ); elseif ( is_author() ) { $curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author)); printf( __( 'Author Archives « %1$s » | %2$s', 'twentytwelve-child' ), $curauth->display_name, get_bloginfo('sitename') ); } else wp_title( '|', true, 'right' ); ?> >