php - drupal : how to show two nodes in one page -
how show 2 nodes in 1 page ?
thank
there's several ways:
- views - set filters or arguments show 2 nodes;
- block - show other node in blocks via special modules (like node block) or programmatically call node_view;
- custom node theming - programmatically call node_view show other node;
- cck + nodereference field - show other node via spec.module;
- taxonomy - set these node concrete term , see via taxonomy/term/concrete_tid;
- and more , more... recommend use views.
Comments
Post a Comment