diff --git a/src/taxonomies/index.js b/src/taxonomies/index.js index ddf3bfb..46f442a 100644 --- a/src/taxonomies/index.js +++ b/src/taxonomies/index.js @@ -84,7 +84,7 @@ export const deleteAllTerms = async ( requestUtils, taxonomy ) => { await requestUtils.batchRest( terms.map( ( term ) => ( { method: 'DELETE', - path: `${ BASE_PATH }/${ taxonomy }/${ term.id }`, + path: `${ BASE_PATH }/${ taxonomy }/${ term.id }?force=true`, } ) ) ); };