Created
January 8, 2016 12:36
-
-
Save RustBeard/22869c12e04d563edcad to your computer and use it in GitHub Desktop.
Print other node in Drupal template
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 | |
$nid = 814; //id of node you want to load | |
$node = node_load($nid); | |
print render(node_view($node)); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment