How to change the default list of allowed html tags in wordpress?
By default, there are certain allowed html tags in wordpress. You can see the list of the allowed tags in “wp-includes/kses.php”. However, how can I update the list without hacking the core file?

smallwei 7:05 pm on October 25, 2009
This is tested working in WP2.8
Note: Custom tags will only affect users. Admin can still use all the tags.
You can create a plugin and add the following function and action hook into the plugin file. You can update the list to fit your need:
Notes: Wordpress is using “kses – PHP HTML/XHTML filter” open source project to provide html tag filtering.