Thanks. I looked up that function and see that the topic id gets returned, but it’s still not working. Maybe I’m not understanding what to do. I’m now trying to use:
add_action(‘bb_insert_topic’, ‘notification_new_topic’);
The idea is that when a new topic is inserted, my function ‘notification_new_topic’ gets executed where I need access to the topic id, but it’s not getting returned with get_topic($topic_id);
Am I doing this correctly?