Delete a wishlist

To delete a wishlist, simply call the delete method on the wishlist object.

Example:

To delete a wishlist with id 7.

$wishlist = nmgr_get_wishlist(7);

if($wishlist) {
  //To trash the wishlist use this
  $wishlist->delete();

  //To force delete the wishlist without moving it to the trash, use this instead
  $wishlist->delete(true);
}