Add functions.phpyour theme to your file. It will work with both saving and updating. Since you have a message id, you can do whatever you want.
function do_my_stuff($post_ID) {
return $post_ID;
}
add_action('save_post', 'do_my_stuff');
Johnp source
share