Change the post date from a meta box
A Note: Actions and Filters are not really interchangeable: Filters typically must return the passed data or it’s going to break something. Building off of what m0r7if3r said, wp_insert_post_data is a filter, so you should be modifying the post’s $data and returning it at the end of the function. (Alternatively, you could global the variables … Read more