Support

Account

Home Forums Backend Issues (wp-admin) Detecting what has just been saved when using save_post action Reply To: Detecting what has just been saved when using save_post action

  • Hi John thanks for the info. I’m just going to do

    function my_acf_save_post( $post_id ) {
        
        if ($post_id=="options"){
    	// my stuff to do...
        }
    	
    }

    and then go from there to keep it simple. I didn’t know about the post id appearing as options and I can confirm it’s plural, with the s. Cheers!