wp/wp-content/themes/twentyfifteen/footer.php
changeset 8 c7c34916027a
parent 7 cf61fcea0001
child 9 177826044cd9
equal deleted inserted replaced
7:cf61fcea0001 8:c7c34916027a
     1 <?php
       
     2 /**
       
     3  * The template for displaying the footer
       
     4  *
       
     5  * Contains the closing of the "site-content" div and all content after.
       
     6  *
       
     7  * @package WordPress
       
     8  * @subpackage Twenty_Fifteen
       
     9  * @since Twenty Fifteen 1.0
       
    10  */
       
    11 ?>
       
    12 
       
    13 	</div><!-- .site-content -->
       
    14 
       
    15 	<footer id="colophon" class="site-footer" role="contentinfo">
       
    16 		<div class="site-info">
       
    17 			<?php
       
    18 				/**
       
    19 				 * Fires before the Twenty Fifteen footer text for footer customization.
       
    20 				 *
       
    21 				 * @since Twenty Fifteen 1.0
       
    22 				 */
       
    23 				do_action( 'twentyfifteen_credits' );
       
    24 			?>
       
    25 			<?php
       
    26 			if ( function_exists( 'the_privacy_policy_link' ) ) {
       
    27 				the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
       
    28 			}
       
    29 			?>
       
    30 			<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>" class="imprint">
       
    31 				<?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?>
       
    32 			</a>
       
    33 		</div><!-- .site-info -->
       
    34 	</footer><!-- .site-footer -->
       
    35 
       
    36 </div><!-- .site -->
       
    37 
       
    38 <?php wp_footer(); ?>
       
    39 
       
    40 </body>
       
    41 </html>