Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: “escape” characters in Group forum posts


Burt Adsit
Participant

@burtadsit

Oh ya. In my travels for the above, I found the magic little function in bbpress for magic links:

bb-includes/functions.wp-core.php

function make_clickable()

line 274

I gladly stole it, copied it over to my favorite php file today ‘bp-forums-filters.php’ renamed it my_damn_make_clickable() and hooked it up to the bp universe with this underneath it:

add_filter( ‘bp_the_topic_post_content’, ‘my_damn_make_clickable’);

We got bbpress magic urls in posts!

You of course would want to put that fn in a little utility plugin that runs in mu-plugins.

Skip to toolbar