- Timestamp:
- 02/16/2026 10:38:01 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyone/inc/template-tags.php
r61091 r61654 28 28 /* translators: %s: Publish date. */ 29 29 esc_html__( 'Published %s', 'twentytwentyone' ), 30 $time_string // phpcs:ignore WordPress.Security.EscapeOutput30 $time_string 31 31 ); 32 32 echo '</span>'; … … 80 80 $post_format = get_post_format(); 81 81 if ( 'aside' === $post_format || 'status' === $post_format ) { 82 echo '<p><a href="' . esc_url( get_permalink() ) . '">' . twenty_twenty_one_continue_reading_text() . '</a></p>'; // phpcs:ignore WordPress.Security.EscapeOutput82 echo '<p><a href="' . esc_url( get_permalink() ) . '">' . twenty_twenty_one_continue_reading_text() . '</a></p>'; 83 83 } 84 84 … … 106 106 /* translators: %s: List of categories. */ 107 107 '<span class="cat-links">' . esc_html__( 'Categorized as %s', 'twentytwentyone' ) . ' </span>', 108 $categories_list // phpcs:ignore WordPress.Security.EscapeOutput108 $categories_list 109 109 ); 110 110 } … … 115 115 /* translators: %s: List of tags. */ 116 116 '<span class="tags-links">' . esc_html__( 'Tagged %s', 'twentytwentyone' ) . '</span>', 117 $tags_list // phpcs:ignore WordPress.Security.EscapeOutput117 $tags_list 118 118 ); 119 119 } … … 148 148 /* translators: %s: List of categories. */ 149 149 '<span class="cat-links">' . esc_html__( 'Categorized as %s', 'twentytwentyone' ) . ' </span>', 150 $categories_list // phpcs:ignore WordPress.Security.EscapeOutput150 $categories_list 151 151 ); 152 152 } … … 157 157 /* translators: %s: List of tags. */ 158 158 '<span class="tags-links">' . esc_html__( 'Tagged %s', 'twentytwentyone' ) . '</span>', 159 $tags_list // phpcs:ignore WordPress.Security.EscapeOutput159 $tags_list 160 160 ); 161 161 }
Note: See TracChangeset
for help on using the changeset viewer.