I18n: ensure all text strings with placeholders have translators comments.
This commit is contained in:
parent
b330bbaba7
commit
8cefd8f258
4 changed files with 20 additions and 4 deletions
|
@ -16,7 +16,10 @@ get_header(); ?>
|
|||
if ( have_posts() ) : ?>
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
||||
<h1 class="page-title"><?php
|
||||
/* translators: %s: search query. */
|
||||
printf( esc_html__( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' );
|
||||
?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<?php
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue