Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: bbpress doesn’t auto-close tags?

@_ck_

Participant

Yay! I figured out how to hack it to make it happen.

To leave the core files alone, I did it through a plugin.

The balancetags in bbpress takes less parameters than from WP.

function force_balance_tags($text) { return balanceTags($text, true);}

add_filter('pre_post', 'force_balance_tags');

Tested working.

Another nice addition in there would be to add nofollow to any post links.

add_filter('pre_post', 'bb_rel_nofollow');

Skip to toolbar