forked from mirror/_s
Merge pull request #742 from andyjsaint/wp_kses
In the arguments passed to `the_content()`, whitelist the class attribute of the Read More link so that it passes through `wp_kses()`.
This commit is contained in:
commit
347692110c
|
@ -19,7 +19,7 @@
|
||||||
<?php
|
<?php
|
||||||
/* translators: %s: Name of current post */
|
/* translators: %s: Name of current post */
|
||||||
the_content( sprintf(
|
the_content( sprintf(
|
||||||
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', '_s' ), array( 'span' => array() ) ),
|
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', '_s' ), array( 'span' => array( 'class' => array() ) ) ),
|
||||||
the_title( '<span class="screen-reader-text">"', '"</span>', false )
|
the_title( '<span class="screen-reader-text">"', '"</span>', false )
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
|
|
Reference in New Issue