Removing some W3C validator issues
This commit is contained in:
parent
44ea2ea03f
commit
96090bdaf5
|
@ -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">
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Reference in New Issue