Forums
(@sjordan8)
15 years, 9 months ago
I had this problem too..
I got around it like this:
add_filter(‘content_save_pre’, ‘foo’);
function foo($content) {
//won’t let it happen again remove_filter(‘content_save_pre’, ‘foo’);
return $content; }