Tagged Questions
0
votes
1answer
198 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++;
...
0
votes
1answer
459 views
Media attachment date and post date
I have just migrated a massive site (2500+ users, 5000+ posts/images) to Wordpress using custom code. Basically every post has one image and that image is attached to the post as the featured image, ...