We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6ab5f commit 13aabfdCopy full SHA for 13aabfd
src/wp-content/themes/twentytwelve/functions.php
@@ -427,11 +427,11 @@ function twentytwelve_content_nav( $html_id ) {
427
<nav id="<?php echo esc_attr( $html_id ); ?>" class="navigation">
428
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
429
<?php if ( $prev_link ) : ?>
430
- <div class="nav-previous"><?php echo wp_kses_post( $prev_link ); ?></div>
+ <div class="nav-previous"><?php echo $prev_link; ?></div>
431
<?php endif; ?>
432
433
<?php if ( $next_link ) : ?>
434
- <div class="nav-next"><?php echo wp_kses_post( $next_link ); ?></div>
+ <div class="nav-next"><?php echo $next_link; ?></div>
435
436
</nav><!-- .navigation -->
437
<?php
0 commit comments