Doing a little research it seems you put the data in the wp_postmeta table. Looking at a product that I subscribed to the data looks like this: a:1:{i:0;s:21:”[email protected]”;}
I am assuming the following
a = total number of subscribers to the product
i= the index of that subscriber
s= length of email address
So if I would do something like this in the appropriate row for this product
a:4:{i:0;s:21:"[email protected]";i:1;s:19:"[email protected]";i:2;s:15:"[email protected]";i:3;s:17:"[email protected]";}
Would this work?
-
This reply was modified 1 year, 8 months ago by jmargel74.