--- a/wp/wp-content/themes/twentythirteen/footer.php Tue Jun 09 11:14:17 2015 +0000
+++ b/wp/wp-content/themes/twentythirteen/footer.php Mon Oct 14 17:39:30 2019 +0200
@@ -16,11 +16,18 @@
<div class="site-info">
<?php do_action( 'twentythirteen_credits' ); ?>
- <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
+ <?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' ) ); ?>" class="imprint">
+ <?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?>
+ </a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
-</html>
\ No newline at end of file
+</html>