Support

Account

Home Forums Backend Issues (wp-admin) get_field() empty on save_post when bulk editing Reply To: get_field() empty on save_post when bulk editing

  • Hi

    Spot-on !

    This now seems obvious, thanks

    In the meantime, I had found an other way to restrict the execution of my fuction on the post edit page by nesting it into this

    global $pagenow;
    if (( $pagenow == 'post.php' )) { 
      //do your stuff
    }