Thomas John
Thomas John

Reputation: 1899

drupal : how to show two nodes in one page

how to show two nodes in one page ?

thank you

Upvotes: 2

Views: 1960

Answers (2)

Nikit
Nikit

Reputation: 5128

There's several ways:

  • Views - set filters or arguments to show 2 nodes;
  • Block - show other node in blocks via special modules (like node as block) or programmatically call node_view;
  • Custom node theming - programmatically call node_view to show other node;
  • CCK + nodereference field - show other node via spec.module;
  • Taxonomy - set for these node concrete term and see via taxonomy/term/CONCRETE_TID;
  • and more and more... Recommend to use views.

Upvotes: 4

ayush
ayush

Reputation: 14568

Try using Panels if you want to have multiple nodes/sections per page

Upvotes: 0

Related Questions