admin管理员组

文章数量:1201994

I need to store some post IDs in the DB in a custom table/field. The IDs will have to be stored in a serialized format. I know that, ie. for the options, serialization is done automatically for add/update functions (add_option(), update_option()). Is there a built-in WP function to serialize data for any other case? Or should I just use serialize()? Similarly, as soon as the data will be retrieved, is there a stock WP function to unserialize it, or will I have to use unserialize()? Thanks in advance for your replies!

I need to store some post IDs in the DB in a custom table/field. The IDs will have to be stored in a serialized format. I know that, ie. for the options, serialization is done automatically for add/update functions (add_option(), update_option()). Is there a built-in WP function to serialize data for any other case? Or should I just use serialize()? Similarly, as soon as the data will be retrieved, is there a stock WP function to unserialize it, or will I have to use unserialize()? Thanks in advance for your replies!

Share Improve this question asked May 28, 2022 at 2:13 Faye D.Faye D. 1266 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

WP functions...

Serialize: maybe_serialze

Unserialize: maybe_unserialize

本文标签: databaseSerialize data before inserting into the DB