Tell us what you are trying to do?
Ultimately want to capture a new post-type being saved, but be able to tell whether anything changed from the previously saved version. I can use the wordpress post_save_xxx which works fine, but I need to find a way to get at the data before it is saved. I am only using the admin area to create and update Toolset post types, so was hoping I might be able to hook into the form submit event. Although I have tried cred_before_save_data, but that doesn't seem to work (only works with toolset forms maybe?).
Any ideas would be appreciated.
Is there any documentation that you are following?
Wordpress codex and toolset hooks documentation.
Is there a similar example that we can see?
What is the link to your site?
hidden link
Sorry. Found the wordpress post_updated hook. That should do the trick.
My issue is resolved now. Thank you!