当前位置:首页>WordPress建站>WordPress开发>WordPress 外观-自定义(Customizer)选项字段数据清理示例

WordPress 外观-自定义(Customizer)选项字段数据清理示例

您可能已经知道,主题开发人员可以使用WordPress Customizer API 为其主题创建设置,从而允许网站所有者微调配色方案、背景图像和其他自定义选项等内容,并实时查看这些更改的预览。

由于我们永远不应该信任用户输入,因此定制器 API 需要为每个设置定义一个回调函数来验证和清理输入。下面的代码示例将演示如何为各种数据类型定义清理回调函数。为了方便起见,代码还包括在主题定制器中添加部分和设置的方法。

清理单选框

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //radio box sanitization function
  11. function theme_slug_sanitize_radio( $input, $setting ){
  12. //input must be a slug: lowercase alphanumeric characters, dashes and underscores are allowed only
  13. $input = sanitize_key($input);
  14. //get the list of possible radio box options
  15. $choices = $setting->manager->get_control( $setting->id )->choices;
  16. //return input if valid or return default option
  17. return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
  18. }
  19. //add setting to your section
  20. $wp_customize->add_setting(
  21. 'theme_slug_customizer_radio',
  22. array(
  23. 'sanitize_callback' => 'theme_slug_sanitize_radio'
  24. )
  25. );
  26. $wp_customize->add_control(
  27. 'theme_slug_customizer_radio',
  28. array(
  29. 'label' => esc_html__( 'Your Setting with Radio Box', 'theme_slug' ),
  30. 'section' => 'theme_slug_customizer_your_section',
  31. 'type' => 'radio',
  32. 'choices' => array(
  33. 'one' => esc_html__('Choice One','theme_slug'),
  34. 'two' => esc_html__('Choice Two','theme_slug'),
  35. 'three' => esc_html__('Choice Three','theme_slug')
  36. )
  37. )
  38. );
  39. }
  40. add_action( 'customize_register', 'theme_slug_customizer' );

清理多选框

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //checkbox sanitization function
  11. function theme_slug_sanitize_checkbox( $input ){
  12. //returns true if checkbox is checked
  13. return ( isset( $input ) ? true : false );
  14. }
  15. //add setting to your section
  16. $wp_customize->add_setting(
  17. 'theme_slug_customizer_checkbox',
  18. array(
  19. 'default' => '',
  20. 'sanitize_callback' => 'theme_slug_sanitize_checkbox'
  21. )
  22. );
  23. $wp_customize->add_control(
  24. 'theme_slug_customizer_checkbox',
  25. array(
  26. 'label' => esc_html__( 'Your Setting with Checkbox', 'theme_slug' ),
  27. 'section' => 'theme_slug_customizer_your_section',
  28. 'type' => 'checkbox'
  29. )
  30. );
  31. }
  32. add_action( 'customize_register', 'theme_slug_customizer' );

清理 select 选项

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //select sanitization function
  11. function theme_slug_sanitize_select( $input, $setting ){
  12. //input must be a slug: lowercase alphanumeric characters, dashes and underscores are allowed only
  13. $input = sanitize_key($input);
  14. //get the list of possible select options
  15. $choices = $setting->manager->get_control( $setting->id )->choices;
  16. //return input if valid or return default option
  17. return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
  18. }
  19. //add setting to your section
  20. $wp_customize->add_setting(
  21. 'theme_slug_customizer_select',
  22. array(
  23. 'sanitize_callback' => 'theme_slug_sanitize_select'
  24. )
  25. );
  26. $wp_customize->add_control(
  27. 'theme_slug_customizer_select',
  28. array(
  29. 'label' => esc_html__( 'Your Setting with select', 'theme_slug' ),
  30. 'section' => 'theme_slug_customizer_your_section',
  31. 'type' => 'select',
  32. 'choices' => array(
  33. '' => esc_html__('Please select','theme_slug'),
  34. 'one' => esc_html__('Choice One','theme_slug'),
  35. 'two' => esc_html__('Choice Two','theme_slug'),
  36. 'three' => esc_html__('Choice Three','theme_slug')
  37. )
  38. )
  39. );
  40. }
  41. add_action( 'customize_register', 'theme_slug_customizer' );

清理单行文本和多行文本域

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_text',
  13. array(
  14. 'sanitize_callback' => 'wp_filter_nohtml_kses' //removes all HTML from content
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_text',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with text input', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'text'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

清理邮箱地址

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_email',
  13. array(
  14. 'sanitize_callback' => 'sanitize_email' //removes all invalid characters
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_email',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with email input', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'email'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

清理网址

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_url',
  13. array(
  14. 'sanitize_callback' => 'esc_url_raw' //cleans URL from all invalid characters
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_url',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with URL input', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'url'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

清理数字

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_number',
  13. array(
  14. 'sanitize_callback' => 'absint' //converts value to a non-negative integer
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_number',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with number input', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'number'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

清理下拉页面

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_dropdown_pages',
  13. array(
  14. 'sanitize_callback' => 'absint' //input value is a page ID so it must be a positive integer
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_dropdown_pages',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with dropdown_pages input', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'dropdown-pages'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

清理文件上传

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //file input sanitization function
  11. function theme_slug_sanitize_file( $file, $setting ) {
  12. //allowed file types
  13. $mimes = array(
  14. 'jpg|jpeg|jpe' => 'image/jpeg',
  15. 'gif' => 'image/gif',
  16. 'png' => 'image/png'
  17. );
  18. //check file type from file name
  19. $file_ext = wp_check_filetype( $file, $mimes );
  20. //if file has a valid mime type return it, otherwise return default
  21. return ( $file_ext['ext'] ? $file : $setting->default );
  22. }
  23. //add select setting to your section
  24. $wp_customize->add_setting(
  25. 'theme_slug_customizer_file',
  26. array(
  27. 'sanitize_callback' => 'theme_slug_sanitize_file'
  28. )
  29. );
  30. $wp_customize->add_control(
  31. new WP_Customize_Upload_Control(
  32. $wp_customize,
  33. 'theme_slug_customizer_file',
  34. array(
  35. 'label' => __( 'Your Setting with file input', 'theme_slug' ),
  36. 'section' => 'theme_slug_customizer_your_section'
  37. )
  38. )
  39. );
  40. }
  41. add_action( 'customize_register', 'theme_slug_customizer' );

清理 CSS

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_css',
  13. array(
  14. 'sanitize_callback' => 'wp_strip_all_tags' //strip all HTML tags including script and style
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_css',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with CSS input', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'textarea'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

清理 HTML 颜色代码

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_color',
  13. array(
  14. 'default' => '#000000',
  15. 'sanitize_callback' => 'sanitize_hex_color' //validates 3 or 6 digit HTML hex color code
  16. )
  17. );
  18. $wp_customize->add_control(
  19. new WP_Customize_Color_Control(
  20. $wp_customize,
  21. 'theme_slug_customizer_color',
  22. array(
  23. 'label' => __( 'Your Setting with color input', 'theme_slug' ),
  24. 'section' => 'theme_slug_customizer_your_section'
  25. )
  26. )
  27. );
  28. }
  29. add_action( 'customize_register', 'theme_slug_customizer' );

清理 HTML 代码

使用wp_kses_post()仅保留帖子内容中允许的 HTML 标签的功能。

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //add setting to your section
  11. $wp_customize->add_setting(
  12. 'theme_slug_customizer_html_code',
  13. array(
  14. 'sanitize_callback' => 'wp_kses_post' //keeps only HTML tags that are allowed in post content
  15. )
  16. );
  17. $wp_customize->add_control(
  18. 'theme_slug_customizer_html_code',
  19. array(
  20. 'label' => esc_html__( 'Your Setting with HTML code', 'theme_slug' ),
  21. 'section' => 'theme_slug_customizer_your_section',
  22. 'type' => 'textarea'
  23. )
  24. );
  25. }
  26. add_action( 'customize_register', 'theme_slug_customizer' );

或者,您可以使用wp_kses()函数来定义允许的 HTML 标记和属性,如下所示:

  1. $allowed_html = array(
  2. 'a' => array(
  3. 'href' => array(),
  4. 'title' => array()
  5. ),
  6. 'br' => array(),
  7. 'em' => array(),
  8. 'strong' => array(),
  9. );
  10. wp_kses($input, $allowed_html);

清理 JAVASCRIPT 代码

我们正在使用base64_encode()函数将脚本正确保存在数据库中,并使用base64_decode()函数来转义自定义程序中 textarea 的脚本。还可以在前端使用base64_decode()函数来回显脚本。

  1. function theme_slug_customizer( $wp_customize ) {
  2. //your section
  3. $wp_customize->add_section(
  4. 'theme_slug_customizer_your_section',
  5. array(
  6. 'title' => esc_html__( 'Your Section', 'theme_slug' ),
  7. 'priority' => 150
  8. )
  9. );
  10. //script input sanitization function
  11. function theme_slug_sanitize_js_code($input){
  12. return base64_encode($input);
  13. }
  14. //output escape function
  15. function theme_slug_escape_js_output($input){
  16. return esc_textarea( base64_decode($input) );
  17. }
  18. //add setting to your section
  19. $wp_customize->add_setting(
  20. 'theme_slug_customizer_js_code',
  21. array(
  22. 'sanitize_callback' => 'theme_slug_sanitize_js_code', //encode for DB insert
  23. 'sanitize_js_callback' => 'theme_slug_escape_js_output' //ecape script for the textarea
  24. )
  25. );
  26. $wp_customize->add_control(
  27. 'theme_slug_customizer_js_code',
  28. array(
  29. 'label' => esc_html__( 'Your Setting with JS code', 'theme_slug' ),
  30. 'section' => 'theme_slug_customizer_your_section',
  31. 'type' => 'textarea'
  32. )
  33. );
  34. }
  35. add_action( 'customize_register', 'theme_slug_customizer' );

WordPress 清理函数列表

以下是WordPress清理函数列表。也许其中之一更适合您的项目。

还有一些 PHP 函数来填补一些空白。

注:本文出自 divpusher.com ,由 WordPress大学 翻译整理。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
欢迎关注WordPress大学公众号 WPDAXUE
WordPress开发商城相关

如何获取 WooCommerce 订单详细信息?

2022-3-4 16:08:34

WordPress开发

Gutenberg 区块样式 API 简介

2022-4-10 10:06:28

0 条回复 A文章作者 M管理员
欢迎您,新朋友,感谢参与互动!
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
私信列表
搜索