Index: src/wp-content/themes/twentyeleven/footer.php
===================================================================
--- src/wp-content/themes/twentyeleven/footer.php	(revision 42995)
+++ src/wp-content/themes/twentyeleven/footer.php	(working copy)
@@ -26,6 +26,11 @@
 
 			<div id="site-generator">
 				<?php do_action( 'twentyeleven_credits' ); ?>
+				<?php
+				if ( $url = get_privacy_policy_url() ) {
+					echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a></span><br>';
+				}
+				?>
 				<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 -->
Index: src/wp-content/themes/twentyfifteen/footer.php
===================================================================
--- src/wp-content/themes/twentyfifteen/footer.php	(revision 42995)
+++ src/wp-content/themes/twentyfifteen/footer.php	(working copy)
@@ -22,6 +22,11 @@
 				 */
 				do_action( 'twentyfifteen_credits' );
 			?>
+			<?php
+			if ( $url = get_privacy_policy_url() ) {
+				echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a> - </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 -->
Index: src/wp-content/themes/twentyfourteen/footer.php
===================================================================
--- src/wp-content/themes/twentyfourteen/footer.php	(revision 42995)
+++ src/wp-content/themes/twentyfourteen/footer.php	(working copy)
@@ -18,6 +18,11 @@
 
 			<div class="site-info">
 				<?php do_action( 'twentyfourteen_credits' ); ?>
+				<?php
+				if ( $url = get_privacy_policy_url() ) {
+					echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a> - </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 -->
Index: src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php
===================================================================
--- src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php	(revision 42995)
+++ src/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php	(working copy)
@@ -10,5 +10,10 @@
 
 ?>
 <div class="site-info">
+	<?php
+	if ( $url = get_privacy_policy_url() ) {
+		echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a> - </span>';
+	}
+	?>
 	<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' ); ?></a>
 </div><!-- .site-info -->
Index: src/wp-content/themes/twentysixteen/footer.php
===================================================================
--- src/wp-content/themes/twentysixteen/footer.php	(revision 42995)
+++ src/wp-content/themes/twentysixteen/footer.php	(working copy)
@@ -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 ( $url = get_privacy_policy_url() ) {
+					echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a></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 -->
Index: src/wp-content/themes/twentysixteen/style.css
===================================================================
--- src/wp-content/themes/twentysixteen/style.css	(revision 42995)
+++ src/wp-content/themes/twentysixteen/style.css	(working copy)
@@ -2435,7 +2435,8 @@
 	font-weight: 400;
 }
 
-.site-footer .site-title:after {
+.site-footer .site-title:after,
+.privacy-policy-page-link:after {
 	content: "\002f";
 	display: inline-block;
 	font-family: Montserrat, sans-serif;
Index: src/wp-content/themes/twentyten/footer.php
===================================================================
--- src/wp-content/themes/twentyten/footer.php	(revision 42995)
+++ src/wp-content/themes/twentyten/footer.php	(working copy)
@@ -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 ( $url = get_privacy_policy_url() ) {
+					echo '<span class="privacy-policy-page-link"> - <a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a></span>';
+				}
+				?>
 			</div><!-- #site-info -->
 
 			<div id="site-generator">
@@ -39,6 +44,7 @@
 				do_action( 'twentyten_credits' );
 				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
+				
 			</div><!-- #site-generator -->
 
 		</div><!-- #colophon -->
Index: src/wp-content/themes/twentythirteen/footer.php
===================================================================
--- src/wp-content/themes/twentythirteen/footer.php	(revision 42995)
+++ src/wp-content/themes/twentythirteen/footer.php	(working copy)
@@ -16,6 +16,11 @@
 
 			<div class="site-info">
 				<?php do_action( 'twentythirteen_credits' ); ?>
+				<?php
+				if ( $url = get_privacy_policy_url() ) {
+					echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a></span><br>';
+				}
+				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
 			</div><!-- .site-info -->
 		</footer><!-- #colophon -->
Index: src/wp-content/themes/twentytwelve/footer.php
===================================================================
--- src/wp-content/themes/twentytwelve/footer.php	(revision 42995)
+++ src/wp-content/themes/twentytwelve/footer.php	(working copy)
@@ -13,6 +13,11 @@
 	<footer id="colophon" role="contentinfo">
 		<div class="site-info">
 			<?php do_action( 'twentytwelve_credits' ); ?>
+			<?php
+			if ( $url = get_privacy_policy_url() ) {
+				echo '<span class="privacy-policy-page-link"><a href="' . esc_attr( $url ) . '" title="' . esc_html( 'Privacy Policy', 'twentyten' ) . '">' . esc_html( 'Privacy Policy', 'twentyten' ) . '</a> - </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 -->
