Drupalで指定のノードタイプのすべてのノードを読み込む方法
EntityFieldQueryを使用する方法:$query = new EntityFieldQuery(); $query->entityCondition('entity_type', 'node') ->entityCondition('bundle', 'your_node_type') ->propertyOrderBy('created', 'DESC') ->range(0, 1000); $result = $query->execute(); if (isset($result['node'])) { $node_ids = array_key>>More