Why doesn’t default WordPress page view use force_balance_tags?
force_balance_tags() is not a really safe function. It doesn’t use an HTML parser but a bunch of potentially expensive regular expressions. You should use it only if you control the length of the excerpt too. Otherwise you could run into memory issues or some obscure bugs. The other problem is: the function uses two hard-coded … Read more