นี่คือโซลูชันที่ใช้ตัวแปรแบบสแตติกเพื่อป้องกันการวนซ้ำไม่สิ้นสุด นี้จะช่วยให้คุณได้อย่างปลอดภัยโทรภายในของฟังก์ชั่นที่เป็นที่ติดยาเสพติดไปยังwp_update_post()
save_post
function km_set_title_on_save( $post_id ) {
// Set this variable to false initially.
static $updated = false;
// If title has already been set once, bail.
if ( $updated ) {
return;
}
// Since we're updating this post's title, set this
// variable to true to ensure it doesn't happen again.
$updated = true;
$date = get_post_meta( $post_id, 'rating_date', true );
$date_formatted = date( 'l, d.m.Y', strtotime( $date ) );
// Update the post's title.
wp_update_post( [
'ID' => $post_id,
'post_title' => 'TV ratings for ' . $date_formatted,
] );
}
add_action( 'save_post', 'km_set_title_on_save' );
หมายเหตุ: หากต้องการ จำกัด ฟังก์ชันนี้เฉพาะบางประเภทโพสต์ให้ใช้hook save_post _ {$ post-> post_type}
hook แทน save_post
register_post_type()
โทรของคุณ