Meta Box
Support Forum
Support › MB Custom Table › API for creating/updating meta?Resolved
I see functions to read existing meta from Meta Box, but do you have functions to write/update meta to tables?
Hi, you can do that pretty easy with $wpdb:
$wpdb
global $wpdb; $wpdb->update( 'your_table', array( 'field_1' => 'value_1', 'field_2' => 'value_2' ) );