diff --git a/src/wp-content/themes/twentyseventeen/components/header/site-branding.php b/src/wp-content/themes/twentyseventeen/components/header/site-branding.php index d588cfaae0..ffa668d15e 100644 --- a/src/wp-content/themes/twentyseventeen/components/header/site-branding.php +++ b/src/wp-content/themes/twentyseventeen/components/header/site-branding.php @@ -23,7 +23,7 @@ -
+ diff --git a/src/wp-content/themes/twentyseventeen/inc/template-tags.php b/src/wp-content/themes/twentyseventeen/inc/template-tags.php index 98733ff2a7..9848fd59b3 100644 --- a/src/wp-content/themes/twentyseventeen/inc/template-tags.php +++ b/src/wp-content/themes/twentyseventeen/inc/template-tags.php @@ -22,7 +22,7 @@ function twentyseventeen_posted_on() { ); // Finally, let's write all of this to the page. - echo '' . twentyseventeen_time_link() . ' '; // WPCS: XSS OK. + echo '' . twentyseventeen_time_link() . ' '; } endif; @@ -76,11 +76,11 @@ function twentyseventeen_entry_footer() { // Make sure there's more than one category before displaying. if ( $categories_list && twentyseventeen_categorized_blog() ) { - echo '' . twentyseventeen_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'twentyseventeen' ) . '' . $categories_list . ''; // WPCS: XSS OK. + echo '' . twentyseventeen_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'twentyseventeen' ) . '' . $categories_list . ''; } if ( $tags_list ) { - echo ' '; // WPCS: XSS OK. + echo ' '; } echo '';