Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BBpress integration issue


r-a-y
Keymaster

@r-a-y

RebootNow is correct.

You can temporarily fix this by swapping out the html_entity_decode() function for utf8_decode().

Change

$content = @html_entity_decode( $content, ENT_COMPAT, "UTF-8" );

to:

$content = utf8_decode( $content);

Skip to toolbar