Changeset 46445 for trunk/src/wp-content/themes/twentytwenty/index.php
- Timestamp:
- 10/08/2019 07:05:53 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/index.php
r46357 r46445 35 35 36 36 if ( $wp_query->found_posts ) { 37 /* Translators: %s = Number of results */ 38 $archive_subtitle = sprintf( _nx( 'We found %s result for your search.', 'We found %s results for your search.', $wp_query->found_posts, '%s = Number of results', 'twentytwenty' ), $wp_query->found_posts ); 37 $archive_subtitle = sprintf( 38 /* translators: %s: Number of search results */ 39 _n( 40 'We found %s result for your search.', 41 'We found %s results for your search.', 42 $wp_query->found_posts, 43 'twentytwenty' 44 ), 45 number_format_i18n( $wp_query->found_posts ) 46 ); 39 47 } else { 40 48 $archive_subtitle = __( 'We could not find any results for your search. You can give it another try through the search form below.', 'twentytwenty' ); … … 89 97 get_search_form( 90 98 array( 91 'label' => _ x( 'search again', 'Label', 'twentytwenty' ),99 'label' => __( 'search again', 'twentytwenty' ), 92 100 ) 93 101 ); … … 101 109 102 110 <?php get_template_part( 'template-parts/pagination' ); ?> 103 <?php get_template_part( 'template-parts/footer-menus-widgets' ); ?>104 111 105 112 </main><!-- #site-content --> 106 113 114 <?php get_template_part( 'template-parts/footer-menus-widgets' ); ?> 115 107 116 <?php 108 117 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.