Skip to content

Instantly share code, notes, and snippets.

@iledcom
Created September 14, 2015 15:16
Show Gist options
  • Save iledcom/24fa4168179baa90dbba to your computer and use it in GitHub Desktop.
Save iledcom/24fa4168179baa90dbba to your computer and use it in GitHub Desktop.
Drupal 7 foreach node one type of material
<?php
// for example node type = product_display
$type = 'product_display';
$nodes = node_load_multiple(array(), array('type' => $type));
foreach ($nodes as $node){
$title = $node->title;
print $title;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment