Allow the class attribute to pass through kses

This commit is contained in:
Andrew Saint 2015-05-08 10:46:27 +01:00
parent 86b81fe391
commit 6094916a24
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', '_s' ), array( 'span' => array() ) ),
wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', '_s' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );
?>