wp/wp-content/themes/twentytwelve/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 footer content and the closing of the #main and #page div elements.
       
     6  *
       
     7  * @package WordPress
       
     8  * @subpackage Twenty_Twelve
       
     9  * @since Twenty Twelve 1.0
       
    10  */
       
    11 ?>
       
    12 	</div><!-- #main .wrapper -->
       
    13 	<footer id="colophon" role="contentinfo">
       
    14 		<div class="site-info">
       
    15 			<?php do_action( 'twentytwelve_credits' ); ?>
       
    16 			<?php
       
    17 			if ( function_exists( 'the_privacy_policy_link' ) ) {
       
    18 				the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
       
    19 			}
       
    20 			?>
       
    21 			<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>">
       
    22 				<?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?>
       
    23 			</a>
       
    24 		</div><!-- .site-info -->
       
    25 	</footer><!-- #colophon -->
       
    26 </div><!-- #page -->
       
    27 
       
    28 <?php wp_footer(); ?>
       
    29 </body>
       
    30 </html>