Skip to content

Commit 13aabfd

Browse files
committed
Remove added wp_kses_post
1 parent 4b6ab5f commit 13aabfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wp-content/themes/twentytwelve/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,11 +427,11 @@ function twentytwelve_content_nav( $html_id ) {
427427
<nav id="<?php echo esc_attr( $html_id ); ?>" class="navigation">
428428
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
429429
<?php if ( $prev_link ) : ?>
430-
<div class="nav-previous"><?php echo wp_kses_post( $prev_link ); ?></div>
430+
<div class="nav-previous"><?php echo $prev_link; ?></div>
431431
<?php endif; ?>
432432

433433
<?php if ( $next_link ) : ?>
434-
<div class="nav-next"><?php echo wp_kses_post( $next_link ); ?></div>
434+
<div class="nav-next"><?php echo $next_link; ?></div>
435435
<?php endif; ?>
436436
</nav><!-- .navigation -->
437437
<?php

0 commit comments

Comments
 (0)