remove kses filter
-
Is there a way to remove kses filter via plugin, without hacking code?
I tryed
remove_filter(‘content_save_pre’, ‘wp_filter_post_kses’);But it’s not working, and wp_filter_post_kses is still called
I also tryed to use
add_action(‘init’,’kses_remove_filters’);
But nothing happened.
I need to extend allowed protocols, but the call at wp_kses (inside wp_filter_post_kses) use the original array ($allowed_protocols) that is not global, so to do that I was tryng to override the original call.
Also a way to extend $allowed_protocols is a solution for me..
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘remove kses filter’ is closed to new replies.