我有一些代码可以通过递增。。。
$post_id = $wpdb->get_var( $query );
$meta = get_post_meta( $post_id, \'stuff\', TRUE );
$meta++;
update_post_meta( $post_id, \'stuff\', $meta );
每次更新时,我都要创建并保存元键/值的修订,以便确定上周、上月、去年等发生了多少次更新。
我正在查看此代码here, 但我不想在编辑帖子屏幕上这样做,它需要在我更新帖子元时发生。