/* translators: %s: Custom field key. */
sprintf( __( 'Could not update the meta value of %s in database.'
),
$meta_key ),
array
( 'key' =>
$name,
'status' => WP_Http::INTERNAL_SERVER_ERROR,
) );
} } foreach ( $to_add as $value ) { if ( !
add_metadata( $meta_type,
$object_id,
wp_slash( $meta_key ),
wp_slash( $value ) ) ) { return new WP_Error( 'rest_meta_database_error',
/* translators: %s: Custom field key. */
sprintf( __( 'Could not update the meta value of %s in database.'
),
$meta_key ),
array
( 'key' =>
$name,
'status' => WP_Http::INTERNAL_SERVER_ERROR,
) );
} }