ソースを参照

Ixion: Use wp_kses_post rather than wp_filter_post_kses. See 5019-wpcom-themes

Caroline Moore 7 年 前
コミット
1075b87deb
1 ファイル変更1 行追加1 行削除
  1. 1 1
      ixion/archive-jetpack-testimonial.php

+ 1 - 1
ixion/archive-jetpack-testimonial.php

@@ -23,7 +23,7 @@ get_header(); ?>
 				?>
 			</h1>
 			<div class="taxonomy-description">
-				<?php echo convert_chars( convert_smilies( wptexturize( stripslashes( wp_filter_post_kses( addslashes( $jetpack_options['page-content'] ) ) ) ) ) ); ?>
+				<?php echo convert_chars( convert_smilies( wptexturize( wp_kses_post( $jetpack_options['page-content'] ) ) ) ); ?>
 			</div>
 		</header>
 	<?php endif; ?>