Removing some W3C validator issues

This commit is contained in:
koenemann 2016-11-25 13:46:16 +01:00
parent 44ea2ea03f
commit 96090bdaf5
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ $container = get_theme_mod( 'understrap_container_type' );
<div class="wrapper" id="wrapper-footer">
<div class="<?php echo esc_html( $container ); ?>" id="content">
<div class="<?php echo esc_html( $container ); ?>">
<div class="row">

View File

@ -86,7 +86,7 @@ function understrap_pagination() {
$class = $paged == $max ? ' class="active "' : ' class="page-item"';
printf( '<li %s><a class="page-link" href="%s" aria-label="Next"><span aria-hidden="true"><i class="fa fa-step-forward" aria-hidden="true"></i></span><span class="sr-only">%s</span></a></li>' . "\n",
$class . ' page-item 9', esc_url( get_pagenum_link( esc_html( $max ) ) ), esc_html($max ) );
$class . '', esc_url( get_pagenum_link( esc_html( $max ) ) ), esc_html($max ) );
}
echo '</ul></nav>' . "\n";