Created
September 14, 2015 15:16
-
-
Save iledcom/24fa4168179baa90dbba to your computer and use it in GitHub Desktop.
Drupal 7 foreach node one type of material
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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