Answers:
钩子是一样的,save_post
只是确保它是您的帖子类型,例如:
add_action('save_post','save_post_callback');
function save_post_callback($post_id){
global $post;
if ($post->post_type != 'MY_CUSTOM_POST_TYPE_NAME'){
return;
}
//if you get here then it's your post type so do your thing....
}