';
- /* translators: used between list items, there is a space after the comma. */
+ /* translators: Used between list items, there is a space after the comma. */
$categories_list = get_the_category_list( __( ', ', 'twentytwentyone' ) );
if ( $categories_list ) {
printf(
- /* translators: %s: list of categories. */
+ /* translators: %s: List of categories. */
'' . esc_html__( 'Categorized as %s', 'twentytwentyone' ) . ' ',
$categories_list // phpcs:ignore WordPress.Security.EscapeOutput
);
}
- /* translators: used between list items, there is a space after the comma. */
+ /* translators: Used between list items, there is a space after the comma. */
$tags_list = get_the_tag_list( '', __( ', ', 'twentytwentyone' ) );
if ( $tags_list ) {
printf(
- /* translators: %s: list of tags. */
+ /* translators: %s: List of tags. */
'' . esc_html__( 'Tagged %s', 'twentytwentyone' ) . '',
$tags_list // phpcs:ignore WordPress.Security.EscapeOutput
);
@@ -144,21 +144,21 @@ if ( ! function_exists( 'twenty_twenty_one_entry_meta_footer' ) ) {
echo '
';
- /* translators: used between list items, there is a space after the comma. */
+ /* translators: Used between list items, there is a space after the comma. */
$categories_list = get_the_category_list( __( ', ', 'twentytwentyone' ) );
if ( $categories_list ) {
printf(
- /* translators: %s: list of categories. */
+ /* translators: %s: List of categories. */
'' . esc_html__( 'Categorized as %s', 'twentytwentyone' ) . ' ',
$categories_list // phpcs:ignore WordPress.Security.EscapeOutput
);
}
- /* translators: used between list items, there is a space after the comma. */
+ /* translators: Used between list items, there is a space after the comma. */
$tags_list = get_the_tag_list( '', __( ', ', 'twentytwentyone' ) );
if ( $tags_list ) {
printf(
- /* translators: %s: list of tags. */
+ /* translators: %s: List of tags. */
'' . esc_html__( 'Tagged %s', 'twentytwentyone' ) . '',
$tags_list // phpcs:ignore WordPress.Security.EscapeOutput
);
diff --git a/src/wp-content/themes/twentytwentyone/search.php b/src/wp-content/themes/twentytwentyone/search.php
index 2401a3b0fc..b39704303e 100644
--- a/src/wp-content/themes/twentytwentyone/search.php
+++ b/src/wp-content/themes/twentytwentyone/search.php
@@ -17,7 +17,7 @@ if ( have_posts() ) {