Skip to content

Instantly share code, notes, and snippets.

@sumanthkumarc
Last active July 14, 2017 11:05
Show Gist options
  • Select an option

  • Save sumanthkumarc/6bdf281012f8de03864aff8da6208b12 to your computer and use it in GitHub Desktop.

Select an option

Save sumanthkumarc/6bdf281012f8de03864aff8da6208b12 to your computer and use it in GitHub Desktop.
Drupal 7 : Disable commenting on existing nodes of particular content type
<?php
$nodes = node_load_multiple(array(), array('type' => $type));
foreach($nodes as $nid => $node){
// Comment status :
// 2 - open
// 1 - closed
// 0 - hidden
$node->comment = 1;
node_save($node);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment