มีตะขอ save_post สำหรับประเภทโพสต์ที่กำหนดเองหรือไม่
ตัวอย่าง: save_my_post_type
ฉันรู้ว่ามีการเผยแพร่ _my_post_type แต่ฉันกำลังมองหาเบ็ดประหยัด
มีตะขอ save_post สำหรับประเภทโพสต์ที่กำหนดเองหรือไม่
ตัวอย่าง: save_my_post_type
ฉันรู้ว่ามีการเผยแพร่ _my_post_type แต่ฉันกำลังมองหาเบ็ดประหยัด
คำตอบ:
ขอให้เหมือนกันsave_post
เพียงตรวจสอบว่าเป็นประเภทโพสต์ของคุณเช่น:
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....
}
โซลูชั่นใหม่ตั้งแต่ WP 3.7: save_post_{$post_type}
add_action( 'save_post_my_post_type', 'wpse63478_save' );
function wpse63478_save() {
//save stuff
}
ดูบันทึกย่อในหน้า codex