Skip to content

Instantly share code, notes, and snippets.

@kontikidigital
Created February 1, 2024 19:21
Show Gist options
  • Save kontikidigital/9a142c2420fbfd30df7d037c89157729 to your computer and use it in GitHub Desktop.
Save kontikidigital/9a142c2420fbfd30df7d037c89157729 to your computer and use it in GitHub Desktop.
ULTIMATE MEMBER Enable the HTML tags in options.
<?php
// ULTIMATE MEMBER Enable the HTML tags in options.
add_filter("um_builder_input_map","um_020422_change_options_sanitization");
function um_020422_change_options_sanitization( $arr ){
$arr['_options']['sanitize'] = 'wp_kses';
return $arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment