カスタム投稿タイプのSave_post?


31

カスタム投稿タイプ用のsave_postフックはありますか?

例:save_my_post_type

publish_my_post_typeがあることは知っていますが、保存フックを探しています。

回答:


28

フックは同じsave_postです。投稿タイプを必ず確認してくださいex:

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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.