The same thing. Activating or not activating (no matter what) the bbcode_create it also will result into an error while clicking onto the submut reply button. A created tag befor activating the pluging and refreshing the post will make the whole string disappear in the posting. Also if I will only parse
echo $value;
Still something wrong with it but I can't see what.
if(!function_exists('handle_bbcode_hwelt_callback'))
{
function handle_bbcode_hwelt_callback(&$parsed, $value)
{
return "Hello world, my name is ".$value."!";
return $parsed;
}
}
This will deliver a
Hello world, my name is Dieter!
So far so good. But how to integrate the php code? As I see the echo comand won't work but the return. So I think I have to place the php code elsewhere. But where?