Twenty Fourteen: string cleanup, see #26437.
Built from https://develop.svn.wordpress.org/trunk@26673 git-svn-id: http://core.svn.wordpress.org/trunk@26563 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dd6d39ba9d
commit
5819bbf298
|
@ -14,7 +14,7 @@ get_header(); ?>
|
|||
<div id="content" class="site-content" role="main">
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php _e( "Oops! That page can't be found.", 'twentyfourteen' ); ?></h1>
|
||||
<h1 class="page-title"><?php _e( 'Not Found', 'twentyfourteen' ); ?></h1>
|
||||
</header>
|
||||
|
||||
<div class="page-content">
|
||||
|
|
|
@ -17,7 +17,7 @@ get_header(); ?>
|
|||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="archive-header">
|
||||
<h1 class="archive-title"><?php single_cat_title(); ?></h1>
|
||||
<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1>
|
||||
|
||||
<?php
|
||||
// Show an optional term description.
|
||||
|
|
|
@ -19,7 +19,7 @@ get_header(); ?>
|
|||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="archive-header">
|
||||
<h1 class="archive-title"><?php single_tag_title(); ?></h1>
|
||||
<h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentyfourteen' ), single_tag_title( '', false ) ); ?></h1>
|
||||
|
||||
<?php
|
||||
// Show an optional term description.
|
||||
|
|
Loading…
Reference in New Issue