Özel gönderi türü için Save_post?


31

Özel yazı tipleri için save_post kancası var mı?

örnek: save_my_post_type

Publish_my_post_type olduğunu biliyorum ama bir kurtarma kancası arıyorum.

Yanıtlar:


28

Kanca aynıdır, save_postyalnızca yazı türünüzden emin olun:

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....
}

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.