> <?php /* ... as influenced by Twenty Ten and Twenty Eleven */ global $page, $paged; wp_title( '|', true, 'right' ); bloginfo( 'name' ); // Add the blog description (tagline) for the home/front page. $site_tagline = get_bloginfo( 'description', 'display' ); if ( $site_tagline && ( is_home() || is_front_page() ) ) echo " | $site_tagline"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'desk-mess-mirrored' ), max( $paged, $page ) ); ?> >