Skip to content

Commit 660b000

Browse files
authored
Remove wp_kses_post
1 parent 42e9968 commit 660b000

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
@@ -220,11 +220,11 @@
220220
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
221221
<div id="nav-below" class="navigation">
222222
<?php if ( $prev_link ) : ?>
223-
<div class="nav-previous"><?php echo wp_kses_post( $prev_link ); ?></div>
223+
<div class="nav-previous"><?php echo $prev_link; ?></div>
224224
<?php endif; ?>
225225

226226
<?php if ( $next_link ) : ?>
227-
<div class="nav-next"><?php echo wp_kses_post( $next_link ); ?></div>
227+
<div class="nav-next"><?php echo $next_link; ?></div>
228228
<?php endif; ?>
229229
</div><!-- #nav-below -->
230230
<?php endif; ?>

0 commit comments

Comments
 (0)