delete_{$meta_type}meta, $meta_id
delete_{$meta_type}meta, $meta_id
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('delete_{$meta_type}meta, $meta_id') is found 1 times:
- /wp-includes/meta.php line 1085
* @since 3.4.0 * * @param int $meta_id ID of the metadata entry to delete. */ do_action( "delete_{$meta_type}meta", $meta_id ); } // Run the query, will return true if deleted, false otherwise. $result = (bool) $wpdb->delete( $table, array( $id_column => $meta_id ) ); // Clear the caches.