Skip to content

Instantly share code, notes, and snippets.

@init90
Last active May 5, 2018 21:23
Show Gist options
  • Save init90/6e1821ff87ee13e23c62b5bda912e604 to your computer and use it in GitHub Desktop.
Save init90/6e1821ff87ee13e23c62b5bda912e604 to your computer and use it in GitHub Desktop.
Drupal 7, delete all nodes from content type.
$nids = db_select('node', 'n')
->fields('n', array('nid'))
->condition('type', 'quiz')
->execute()
->fetchCol();
node_delete_multiple($nids);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment