Support

Account

Home Forums General Issues Importing ACF Reply To: Importing ACF

  • I’m not sure you can import serialized data.

    But if you can, ACF stores a serialized array of string values representing the IDs.

    Your first array

    
    array(0 => "651", 1 => "649")
    

    would be serialized by ACF as

    
    a:2:{i:0;s:3:"651";i:1;s:3:"649";}