Tagged Questions
0
votes
1answer
199 views
Saving Revision of post meta key/value on each update_post_meta event
I have some code that updates a meta-key's value by incrementing...
$post_id = $wpdb->get_var( $query );
$meta = get_post_meta( $post_id, 'stuff', TRUE );
$meta++;
...