The type of object the function will work with. For example: post, user, comment, term.
$object_id(int) (required)
ID of the object whose metadata needs to be deleted. For example, the ID of the post.
$meta_key(string) (required)
The name of the metadata key to be deleted. For example: the custom field key of the post "title".
$meta_value(string/array/int/object/boolean)
If this value is specified, the function will attempt to find and delete metadata with the value specified here when one object has different metadata with the same keys. For example, post 5 has custom fields: title=value 1 and title=value 2, we need to delete "value 2", we specify it in this parameter. Default: ''
$delete_all(boolean)
If this parameter is set to true, the function will ignore the $object_id parameter and delete the specified metadata from all objects. By default false - metadata is deleted only from the specified object. Default: false
function delete_post_meta( $post_id, $meta_key, $meta_value = '' ) {
// Make sure meta is added to the post, not a revision.
$the_post = wp_is_post_revision( $post_id );
if ( $the_post ) {
$post_id = $the_post;
}
return delete_metadata( 'post', $post_id, $meta_key, $meta_value );
}
This code shows how to delete all metafields of all posts with the specified key:
$meta_key = 'key_to_delete';
$deleted = delete_metadata( 'post', 0, $meta_key, '', true );
if( $deleted ){
echo "All post meta fields with key $meta_key deleted.";
}
else {
echo "Nothing deleted.";
}
Or use such more descriptive code:
/*
* Remove all post meta data for Custom Post Type (CPT)
* at the time of uninstall of plugin that created this CPT.
* So that plugin do not leave behind any orphan post meta data
* related to its CPT.
*
* You may place this code in uninstall.php file in your plugin root directory.
*/
$meta_type = 'post'; // since we are deleting data for CPT
$object_id = 0; // no need to put id of object since we are deleting all
$meta_key = 'my_meta_key'; // Your target meta_key added using update_post_meta()
$meta_value = ''; // No need to check for value since we are deleting all
$delete_all = true; // This is important to have TRUE to delete all post meta
// This will delete all post meta data having the specified key
delete_metadata( $meta_type, $object_id, $meta_key, $meta_value, $delete_all );
Be VERY careful when using this function to delete a specific key-value pair. As stated, providing an empty string for $meta_value will cause the check to be skipped entirely, resulting in all keys being deleted!
$meta_value …If specified, only delete metadata entries with this value. Otherwise, delete all entries with the specified meta_key…
To avoid accidentally deleting ALL key instances, use a short-circuit check:
$value_to_delete = get_value(); // may return empty string
if ( $value_to_delete && delete_metadata( 'post', 27, 'key', $value_to_delete ) ) {
// the key-value pair was safely deleted
}