맞춤 게시물 유형에 대한 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.