Notifications
Clear all

wpForo 1.x.x [Closed] Some wpForo hooks

3 Posts
2 Users
1 Reactions
2,972 Views
antonM
Posts: 131
Topic starter
(@antonm)
Estimable Member
Joined: 8 years ago

Dear wpForo team,

are there any wpForo hooks when I add new post to existed topic or update some post in such topic?

I would like to write a function to delete cache files of caching plugin when some of these events is occur.

Thanks!

2 Replies
Robert
Posts: 10591
Admin
(@robert)
Support Team
Joined: 9 years ago

These action hooks maybe useful:

  • 'wpforo_after_add_topic' - arg: (array)$topic
  • 'wpforo_start_edit_topic' - arg: (array)$topic
  • 'wpforo_after_add_post' - args: (array)$post, (array)$topic
  • 'wpforo_start_edit_post' - args: (array)$post
antonM
Posts: 131
Topic starter
(@antonm)
Estimable Member
Joined: 8 years ago

Thank you Robert! I will try these hooks.