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執行的內容。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols );
return apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols );
return apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols );

常見問題

FAQs
檢視更多 >