¿Hay un enlace save_post para los tipos de publicaciones personalizadas?
ejemplo: save_my_post_type
Sé que hay edit_my_post_type pero estoy buscando un gancho para guardar.
el gancho es el mismo, save_post
solo asegúrese de que sea su tipo de publicación, por ejemplo:
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....
}
Nueva solución, a partir de WP 3.7: save_post_{$post_type}
add_action( 'save_post_my_post_type', 'wpse63478_save' );
function wpse63478_save() {
//save stuff
}
Ver la nota en la página del códice