diff --git a/src/wp-content/themes/twentysixteen/404.php b/src/wp-content/themes/twentysixteen/404.php
index bb122f2f41..9bf9376e66 100644
--- a/src/wp-content/themes/twentysixteen/404.php
+++ b/src/wp-content/themes/twentysixteen/404.php
@@ -14,11 +14,11 @@ get_header(); ?>
 
 			<section class="error-404 not-found">
 				<header class="page-header">
-					<h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'twentysixteen' ); ?></h1>
+					<h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'twentysixteen' ); ?></h1>
 				</header><!-- .page-header -->
 
 				<div class="page-content">
-					<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentysixteen' ); ?></p>
+					<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentysixteen' ); ?></p>
 
 					<?php get_search_form(); ?>
 				</div><!-- .page-content -->
diff --git a/src/wp-content/themes/twentysixteen/functions.php b/src/wp-content/themes/twentysixteen/functions.php
index d098a1ebde..86dcaaf703 100644
--- a/src/wp-content/themes/twentysixteen/functions.php
+++ b/src/wp-content/themes/twentysixteen/functions.php
@@ -226,7 +226,7 @@ if ( ! function_exists( 'twentysixteen_setup' ) ) :
 		// Add support for custom line height controls.
 		add_theme_support( 'custom-line-height' );
 	}
-endif; // twentysixteen_setup()
+endif;
 add_action( 'after_setup_theme', 'twentysixteen_setup' );
 
 /**
@@ -243,27 +243,6 @@ function twentysixteen_content_width() {
 }
 add_action( 'after_setup_theme', 'twentysixteen_content_width', 0 );
 
-/**
- * Add preconnect for Google Fonts.
- *
- * @since Twenty Sixteen 1.6
- * @deprecated Twenty Sixteen 2.9 Disabled filter because, by default, fonts are self-hosted.
- *
- * @param array  $urls          URLs to print for resource hints.
- * @param string $relation_type The relation type the URLs are printed.
- * @return array URLs to print for resource hints.
- */
-function twentysixteen_resource_hints( $urls, $relation_type ) {
-	if ( wp_style_is( 'twentysixteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
-		$urls[] = array(
-			'href' => 'https://fonts.gstatic.com',
-			'crossorigin',
-		);
-	}
-
-	return $urls;
-}
-// add_filter( 'wp_resource_hints', 'twentysixteen_resource_hints', 10, 2 );
 
 /**
  * Registers a widget area.
diff --git a/src/wp-content/themes/twentysixteen/header.php b/src/wp-content/themes/twentysixteen/header.php
index 2ad0f66c67..d95a67c787 100644
--- a/src/wp-content/themes/twentysixteen/header.php
+++ b/src/wp-content/themes/twentysixteen/header.php
@@ -28,7 +28,7 @@
 		<a class="skip-link screen-reader-text" href="#content">
 			<?php
 			/* translators: Hidden accessibility text. */
-			_e( 'Skip to content', 'twentysixteen' );
+			esc_html_e( 'Skip to content', 'twentysixteen' );
 			?>
 		</a>
 
@@ -47,12 +47,12 @@
 					$description = get_bloginfo( 'description', 'display' );
 					if ( $description || is_customize_preview() ) :
 						?>
-						<p class="site-description"><?php echo $description; ?></p>
+						<p class="site-description"><?php echo wp_kses_post( $description ); ?></p>
 					<?php endif; ?>
 				</div><!-- .site-branding -->
 
 				<?php if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) ) : ?>
-					<button id="menu-toggle" class="menu-toggle"><?php _e( 'Menu', 'twentysixteen' ); ?></button>
+					<button id="menu-toggle" class="menu-toggle"><?php esc_html_e( 'Menu', 'twentysixteen' ); ?></button>
 
 					<div id="site-header-menu" class="site-header-menu">
 						<?php if ( has_nav_menu( 'primary' ) ) : ?>
diff --git a/src/wp-content/themes/twentysixteen/template-parts/content-none.php b/src/wp-content/themes/twentysixteen/template-parts/content-none.php
index ad401cf9ec..2a78bccf0d 100644
--- a/src/wp-content/themes/twentysixteen/template-parts/content-none.php
+++ b/src/wp-content/themes/twentysixteen/template-parts/content-none.php
@@ -10,7 +10,7 @@
 
 <section class="no-results not-found">
 	<header class="page-header">
-		<h1 class="page-title"><?php _e( 'Nothing Found', 'twentysixteen' ); ?></h1>
+		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'twentysixteen' ); ?></h1>
 	</header><!-- .page-header -->
 
 	<div class="page-content">
@@ -25,12 +25,12 @@
 
 		<?php elseif ( is_search() ) : ?>
 
-			<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'twentysixteen' ); ?></p>
+			<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'twentysixteen' ); ?></p>
 			<?php get_search_form(); ?>
 
 		<?php else : ?>
 
-			<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentysixteen' ); ?></p>
+			<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentysixteen' ); ?></p>
 			<?php get_search_form(); ?>
 
 		<?php endif; ?>
diff --git a/src/wp-content/themes/twentysixteen/template-parts/content.php b/src/wp-content/themes/twentysixteen/template-parts/content.php
index bd2ee145c4..660dafe96d 100644
--- a/src/wp-content/themes/twentysixteen/template-parts/content.php
+++ b/src/wp-content/themes/twentysixteen/template-parts/content.php
@@ -11,7 +11,7 @@
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
 		<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
-			<span class="sticky-post"><?php _e( 'Featured', 'twentysixteen' ); ?></span>
+			<span class="sticky-post"><?php esc_html_e( 'Featured', 'twentysixteen' ); ?></span>
 		<?php endif; ?>
 
 		<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
