Does anyone here know how I can add additional bbcode options to a function for 'bbcode_create' just for that one function not all, for say say only the custom tags. I know there is a hack for something like this but I can figure our how to get it to work just for a hack since I don't want it everything to have additional options plus the hack was the the beta of vb3.5.
PHP Code:
function handle_bbcode_somehack(&$parser, $text, $link)
{
So I would like to load one more like this or something like that maybe?
PHP Code:
function handle_bbcode_somehack(&$parser, $text, $info, $link)
{
So then I can use [hack=option1|option2]this hack[/hack]. Thanks.