After Restoration, in loal, in wp_postmeta, i am meta key “_count-views_year-2015”.
Good News !!
After updating your plugin, it will do more to have a hook
this style, it seems
function update_metadata($meta_type, $object_id, $meta_key, $meta_value, $prev_value = '') {
global $wpdb;
if ( ! $meta_type || ! $meta_key || ! is_numeric( $object_id ) ) {
return false;
}
$object_id = absint( $object_id );
if ( ! $object_id ) {
return false;
}