I have several functions that are called from inside a save_post function. However, all of the functions that use the $post object are returning incorrect values because it appears that the default value being passed to save_post is the post ID rather than the post object.
How can I pass the post object to the save_post function in addition to the post ID?
add_action('save_post', 'my_save_function');