delete_postmeta, $meta_ids
delete_postmeta, $meta_ids
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('delete_postmeta, $meta_ids') is found 1 times:
- /wp-includes/meta.php line 511
* @since 2.9.0 * * @param string[] $meta_ids An array of metadata entry IDs to delete. */ do_action( 'delete_postmeta', $meta_ids ); } $query = "DELETE FROM $table WHERE $id_column IN( " . implode( ',', $meta_ids ) . ' )'; $count = $wpdb->query( $query );