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 14e0908 commit d794461Copy full SHA for d794461
src/wp-content/themes/twentyeleven/functions.php
@@ -654,11 +654,11 @@ function twentyeleven_content_nav( $html_id ) {
654
<nav id="<?php echo esc_attr( $html_id ); ?>">
655
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
656
<?php if ( $prev_link ) : ?>
657
- <div class="nav-previous"><?php echo wp_kses_post( $prev_link ); ?></div>
+ <div class="nav-previous"><?php echo $prev_link; ?></div>
658
<?php endif; ?>
659
660
<?php if ( $next_link ) : ?>
661
- <div class="nav-next"><?php echo wp_kses_post( $next_link ); ?></div>
+ <div class="nav-next"><?php echo $next_link; ?></div>
662
663
</nav><!-- #<?php echo esc_attr( $html_id ); ?> -->
664
<?php
0 commit comments