0
hatton
Hello,
where is the data stored (in which database table)? I created hundreds of grids and I need to update all of them with a sql query.
2 Subscribers
Submit Answer
1 Answers
Best Answer
0
Welcome to our forum
Post grid data saved under post meta of post_grid post type.
Can you please explain your issue?
Regards
Thanks for your reply with details, all option under post grid post meta box saved under meta field "post_grid_meta_options" as an array, if you can var_dump($post_grid_meta_options) you will see option details data.
$post_grid_meta_options = get_post_meta( $post->ID, 'post_grid_meta_options', true );
you can run a loop for query post for post grid post type and merge/replace with your new values and update.
Let me know if you can do it.
Regards