apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols )
参数
  • (string) $string Content to filter through KSES.
    Required:
  • (array[]|string) $allowed_html An array of allowed HTML elements and attributes, or a context name such as 'post'. See wp_kses_allowed_html() for the list of accepted context names.
    Required:
  • (string[]) $allowed_protocols Array of allowed URL protocols.
    Required:
定义位置
相关勾子
pre_get_sitespre_user_idpre_user_searchwp_trusted_keyspre_count_users
相关方法
wp_kseswp_filter_kseswp_trusted_keyswp_kses_attrwp_kses_hairwp_kses_hook
引入
2.3.0
弃用
-

pre_kses – 这个钩子在内容通过kses(kses Strips Evil Scripts)函数之前被调用,该函数用于从用户生成的内容中剥离不需要的HTML标签和属性。开发人员可以使用这个钩子在内容被净化之前对其进行修改。

过滤要通过KSES运行的内容。

return apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols );

常见问题

FAQs
查看更多 >