Saving plugin’s settings in 1 field in json format
There’s always a character limit, but option_value is LONGTEXT so unless you anticipate more than 4GB of data you should be fine. I’d suggest json is unnecessary – you can save a PHP array as the value and it will be serialized/deserialized automatically. That said, as Tom points out, this is really micro-optimising, and won’t … Read more