我试图在更新后运行一个函数,检查ACF是否等于某个值。
我正在检查ACF值是否等于new或closed。
当我将其从值new更改为closed并保存时,它不会运行,但如果我在帖子关闭时再次保存帖子,它会运行。
function check_values($post_ID){
if(get_field(\'status\', $post_ID ) == "closed") {
sendSMS();
}
}
add_action( \'post_updated\', \'check_values\', 10, 3 ); //don\'t forget the last argument to allow all three arguments of the function
这有什么我遗漏的吗?我想避免每个帖子保存两次。
非常感谢。