31 맞춤 게시물 유형에 대한 save_post 후크가 있습니까? 예 : save_my_post_type publish_my_post_type이 있지만 저장 후크를 찾고 있습니다. hooks — 우 로크 93 소스
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.... } — 베 인터넷 소스
65 WP 3.7 기준 새로운 솔루션 : save_post_{$post_type} add_action( 'save_post_my_post_type', 'wpse63478_save' ); function wpse63478_save() { //save stuff } 코덱스 페이지 의 참고 사항을 참조하십시오 — 매니 Fleurmond 소스 이에 대한 새 문서는 developer.wordpress.org/reference/hooks/… — Ken