mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
fcf096f4b9
With IE11 no longer supported, the primary problem with assistive technology support for native HTML5 elements no longer applies. This commit removes the `role` attribute from the following HTML5 elements with default landmark roles, per formerly required role attributes and W3C. Follow-up to [17669], [21261], [23452], [24832], [29892], [38833], [40851], [43842], [46271], [49216]. Props costdev, craigfrancis, joedolson, mukesh27, ryokuhi, sabernhardt. Fixes #54079. Built from https://develop.svn.wordpress.org/trunk@52013 git-svn-id: http://core.svn.wordpress.org/trunk@51604 1a063a9b-81f0-0310-95a4-ce76da25c4cd
37 lines
952 B
PHP
37 lines
952 B
PHP
<?php
|
|
/**
|
|
* The template for displaying the footer
|
|
*
|
|
* Contains footer content and the closing of the #main and #page div elements.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Thirteen
|
|
* @since Twenty Thirteen 1.0
|
|
*/
|
|
?>
|
|
|
|
</div><!-- #main -->
|
|
<footer id="colophon" class="site-footer">
|
|
<?php get_sidebar( 'main' ); ?>
|
|
|
|
<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' ) ); ?>" class="imprint">
|
|
<?php
|
|
/* translators: %s: WordPress */
|
|
printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' );
|
|
?>
|
|
</a>
|
|
</div><!-- .site-info -->
|
|
</footer><!-- #colophon -->
|
|
</div><!-- #page -->
|
|
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|