I am trying to write a plugin that copies a custom post type “event” from one blog to another. The code for copying I already have working but I cannot seem to get this “add_action” hook to work when an event is published.
add_action('publish_event', 'copy_event_to_mini_site' );
function copy_event_to_mini_site() {
code in here to copy relevant data from one blog to the other
}
I also tried: add_action('publish_post', 'copy_event_to_mini_site' );
That did not work either.