浏览代码

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

Caroline Moore 7 年之前
父节点
当前提交
0e3b80d6d5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      karuna/archive-jetpack-testimonial.php

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

@@ -30,7 +30,7 @@ get_header(); ?>
 				</header>
 				<article class="hentry testimonials-hentry">
 					<div class="entry-content">
-						<?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>
 				</article>