diff --git a/src/wp-content/themes/twentyfifteen/inc/template-tags.php b/src/wp-content/themes/twentyfifteen/inc/template-tags.php index b06bc71b1e..99d65ecf48 100644 --- a/src/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/src/wp-content/themes/twentyfifteen/inc/template-tags.php @@ -72,8 +72,8 @@ function twentyfifteen_entry_meta() { esc_html( get_the_modified_date() ) ); - printf( '%1$s%3$s', - sprintf( _x( 'Posted on', 'Used before publish date.', 'twentyfifteen' ) ), + printf( '%1$s%3$s', + esc_html_x( 'Posted on', 'Used before publish date.', 'twentyfifteen' ), esc_url( get_permalink() ), $time_string ); @@ -81,8 +81,8 @@ function twentyfifteen_entry_meta() { if ( 'post' == get_post_type() ) { if ( is_singular() || is_multi_author() ) { - printf( '%1$s%3$s', - sprintf( _x( 'Author', 'Used before post author name.', 'twentyfifteen' ) ), + printf( '%1$s%3$s', + esc_html_x( 'Author', 'Used before post author name.', 'twentyfifteen' ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ); @@ -90,16 +90,16 @@ function twentyfifteen_entry_meta() { $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfifteen' ) ); if ( $categories_list && twentyfifteen_categorized_blog() ) { - printf( '%1$s%2$s', - sprintf( _x( 'Categories', 'Used before category names.', 'twentyfifteen' ) ), + printf( '%1$s%2$s', + esc_html_x( 'Categories', 'Used before category names.', 'twentyfifteen' ), $categories_list ); } $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfifteen' ) ); if ( $tags_list ) { - printf( '%1$s%2$s', - sprintf( _x( 'Tags', 'Used before tag names.', 'twentyfifteen' ) ), + printf( '%1$s%2$s', + esc_html_x( 'Tags', 'Used before tag names.', 'twentyfifteen' ), $tags_list ); } @@ -109,8 +109,8 @@ function twentyfifteen_entry_meta() { // Retrieve attachment metadata. $metadata = wp_get_attachment_metadata(); - printf( '%1$s%3$s × %4$s', - sprintf( _x( 'Full size', 'Used before full size attachment link.', 'twentyfifteen' ) ), + printf( '%1$s%3$s × %4$s', + esc_html_x( 'Full size', 'Used before full size attachment link.', 'twentyfifteen' ), esc_url( wp_get_attachment_url() ), $metadata['width'], $metadata['height']