Skip to content

Commit d463e44

Browse files
authored
Remove additional wp_kses_post
1 parent adb06d6 commit d463e44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wp-content/themes/twentyten/loop.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
?>
3333
<div id="nav-above" class="navigation">
3434
<?php if ( $prev_link ) : ?>
35-
<div class="nav-previous"><?php echo wp_kses_post( $prev_link ); ?></div>
35+
<div class="nav-previous"><?php echo $prev_link; ?></div>
3636
<?php endif; ?>
3737

3838
<?php if ( $next_link ) : ?>
39-
<div class="nav-next"><?php echo wp_kses_post( $next_link ); ?></div>
39+
<div class="nav-next"><?php echo $next_link; ?></div>
4040
<?php endif; ?>
4141
</div><!-- #nav-above -->
4242
<?php endif; ?>

0 commit comments

Comments
 (0)