diff --git src/wp-content/themes/twentyeleven/footer.php src/wp-content/themes/twentyeleven/footer.php
index b14ba70a24..18d022e3a5 100644
--- src/wp-content/themes/twentyeleven/footer.php
+++ src/wp-content/themes/twentyeleven/footer.php
@@ -26,6 +26,11 @@
 
 			<div id="site-generator">
 				<?php do_action( 'twentyeleven_credits' ); ?>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+				}
+				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
 			</div>
 	</footer><!-- #colophon -->
diff --git src/wp-content/themes/twentyeleven/style.css src/wp-content/themes/twentyeleven/style.css
index 83e6f7a522..7211225f99 100644
--- src/wp-content/themes/twentyeleven/style.css
+++ src/wp-content/themes/twentyeleven/style.css
@@ -2352,6 +2352,12 @@ p.comment-form-comment {
 	color: #555;
 	font-weight: bold;
 }
+#site-generator span[role=separator] {
+	padding: 0 0.4em 0 0.5em;
+}
+#site-generator span[role=separator]::before {
+	content: '/';
+}
 
 
 /* =Responsive Structure
diff --git src/wp-content/themes/twentyfifteen/footer.php src/wp-content/themes/twentyfifteen/footer.php
index e57b5f583a..e8594bba77 100644
--- src/wp-content/themes/twentyfifteen/footer.php
+++ src/wp-content/themes/twentyfifteen/footer.php
@@ -22,6 +22,11 @@
 				 */
 				do_action( 'twentyfifteen_credits' );
 			?>
+			<?php
+			if ( function_exists( 'the_privacy_policy_link' ) ) {
+				the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+			}
+			?>
 			<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?></a>
 		</div><!-- .site-info -->
 	</footer><!-- .site-footer -->
diff --git src/wp-content/themes/twentyfifteen/style.css src/wp-content/themes/twentyfifteen/style.css
index 77c731163b..15f42dc7c6 100644
--- src/wp-content/themes/twentyfifteen/style.css
+++ src/wp-content/themes/twentyfifteen/style.css
@@ -2434,6 +2434,12 @@ a.post-thumbnail:focus {
 	color: #333;
 }
 
+.site-info span[role=separator] {
+	padding: 0 0.4em 0 0.5em;
+}
+.site-info span[role=separator]::before {
+	content: '/';
+}
 
 /**
  * 14.0 Media
diff --git src/wp-content/themes/twentyfourteen/footer.php src/wp-content/themes/twentyfourteen/footer.php
index 0193c64777..be0c5f777c 100644
--- src/wp-content/themes/twentyfourteen/footer.php
+++ src/wp-content/themes/twentyfourteen/footer.php
@@ -18,6 +18,11 @@
 
 			<div class="site-info">
 				<?php do_action( 'twentyfourteen_credits' ); ?>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+				}
+				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?></a>
 			</div><!-- .site-info -->
 		</footer><!-- #colophon -->
diff --git src/wp-content/themes/twentyfourteen/style.css src/wp-content/themes/twentyfourteen/style.css
index 32ed8373ae..168cf4e13f 100644
--- src/wp-content/themes/twentyfourteen/style.css
+++ src/wp-content/themes/twentyfourteen/style.css
@@ -2916,6 +2916,12 @@ a.post-thumbnail:hover {
 	color: #41a62a;
 }
 
+.site-info span[role=separator] {
+	padding: 0 0.4em 0 0.5em;
+}
+.site-info span[role=separator]::before {
+	content: '/';
+}
 
 /**
  * 9.0 Featured Content
diff --git src/wp-content/themes/twentyseventeen/style.css src/wp-content/themes/twentyseventeen/style.css
index beafdee296..fe7dfc7507 100644
--- src/wp-content/themes/twentyseventeen/style.css
+++ src/wp-content/themes/twentyseventeen/style.css
@@ -2378,6 +2378,13 @@ body:not(.twentyseventeen-front-page) .entry-header {
 	width: 100%;
 }
 
+.site-info span[role=separator] {
+	padding: 0 0.3em 0 0.4em;
+}
+.site-info span[role=separator]::before {
+	content: '/';
+}
+
 /*--------------------------------------------------------------
 14.0 Comments
 --------------------------------------------------------------*/
diff --git src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php
index 8455dc4235..e145e59dd6 100644
--- src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php
+++ src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php
@@ -10,5 +10,10 @@
 
 ?>
 <div class="site-info">
+	<?php
+	if ( function_exists( 'the_privacy_policy_link' ) ) {
+		the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+	}
+	?>
 	<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' ); ?></a>
 </div><!-- .site-info -->
diff --git src/wp-content/themes/twentysixteen/footer.php src/wp-content/themes/twentysixteen/footer.php
index 037633a98d..a19e5c4125 100644
--- src/wp-content/themes/twentysixteen/footer.php
+++ src/wp-content/themes/twentysixteen/footer.php
@@ -52,6 +52,11 @@
 					do_action( 'twentysixteen_credits' );
 				?>
 				<span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+				}
+				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentysixteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' ); ?></a>
 			</div><!-- .site-info -->
 		</footer><!-- .site-footer -->
diff --git src/wp-content/themes/twentysixteen/style.css src/wp-content/themes/twentysixteen/style.css
index ed22828698..5bfc66a48b 100644
--- src/wp-content/themes/twentysixteen/style.css
+++ src/wp-content/themes/twentysixteen/style.css
@@ -2443,6 +2443,15 @@ body.search-no-results .page-header {
 	padding: 0 0.307692308em 0 0.538461538em;
 }
 
+.site-footer span[role=separator] {
+	font-family: Montserrat, sans-serif;
+	opacity: 0.7;
+	padding: 0 0.307692308em 0 0.538461538em;
+}
+.site-footer span[role=separator]::before {
+	content: '/';
+}
+
 
 /**
  * 12.0 - Media
diff --git src/wp-content/themes/twentyten/footer.php src/wp-content/themes/twentyten/footer.php
index bb32687930..ce7268b30c 100644
--- src/wp-content/themes/twentyten/footer.php
+++ src/wp-content/themes/twentyten/footer.php
@@ -27,6 +27,11 @@
 				<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
 					<?php bloginfo( 'name' ); ?>
 				</a>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '<span role="separator" aria-hidden="true"></span>', '' );
+				}
+				?>
 			</div><!-- #site-info -->
 
 			<div id="site-generator">
diff --git src/wp-content/themes/twentyten/style.css src/wp-content/themes/twentyten/style.css
index d73dadd075..9f36010b50 100644
--- src/wp-content/themes/twentyten/style.css
+++ src/wp-content/themes/twentyten/style.css
@@ -1318,6 +1318,12 @@ img#wpstats {
 	display: block;
 	margin: 0 auto 10px;
 }
+#site-info span[role=separator] {
+	padding: 0 0.7em 0 0.3em;
+}
+#site-info span[role=separator]::before {
+	content: '/';
+}
 
 
 /* =Mobile Safari ( iPad, iPhone and iPod Touch )
diff --git src/wp-content/themes/twentythirteen/footer.php src/wp-content/themes/twentythirteen/footer.php
index 37eef9b332..55085e8c82 100644
--- src/wp-content/themes/twentythirteen/footer.php
+++ src/wp-content/themes/twentythirteen/footer.php
@@ -16,6 +16,11 @@
 
 			<div class="site-info">
 				<?php do_action( 'twentythirteen_credits' ); ?>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+				}
+				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
 			</div><!-- .site-info -->
 		</footer><!-- #colophon -->
diff --git src/wp-content/themes/twentythirteen/style.css src/wp-content/themes/twentythirteen/style.css
index 1506934978..51e7513944 100644
--- src/wp-content/themes/twentythirteen/style.css
+++ src/wp-content/themes/twentythirteen/style.css
@@ -2705,6 +2705,12 @@ footer.entry-meta {
 	margin: -10px auto 0;
 }
 
+.site-footer span[role=separator] {
+	padding: 0 0.4em 0 0.5em;
+}
+.site-footer span[role=separator]::before {
+	content: '/';
+}
 
 /**
  * 8.0 Media Queries
diff --git src/wp-content/themes/twentytwelve/footer.php src/wp-content/themes/twentytwelve/footer.php
index b65e115d34..eb6e1d354a 100644
--- src/wp-content/themes/twentytwelve/footer.php
+++ src/wp-content/themes/twentytwelve/footer.php
@@ -13,6 +13,11 @@
 	<footer id="colophon" role="contentinfo">
 		<div class="site-info">
 			<?php do_action( 'twentytwelve_credits' ); ?>
+			<?php
+			if ( function_exists( 'the_privacy_policy_link' ) ) {
+				the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+			}
+			?>
 			<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a>
 		</div><!-- .site-info -->
 	</footer><!-- #colophon -->
diff --git src/wp-content/themes/twentytwelve/style.css src/wp-content/themes/twentytwelve/style.css
index 9c4dce365b..96de1300af 100644
--- src/wp-content/themes/twentytwelve/style.css
+++ src/wp-content/themes/twentytwelve/style.css
@@ -694,6 +694,12 @@ footer[role="contentinfo"] a {
 footer[role="contentinfo"] a:hover {
 	color: #21759b;
 }
+.site-info span[role=separator] {
+	padding: 0 0.4em 0 0.6em;
+}
+.site-info span[role=separator]::before {
+	content: '/';
+}
 
 
 /* =Main content and comment content
