Skip to content

Instantly share code, notes, and snippets.

@mynameispj
Last active December 19, 2015 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mynameispj/5991369 to your computer and use it in GitHub Desktop.
Save mynameispj/5991369 to your computer and use it in GitHub Desktop.
Drupal 7 -- Node_load and then render() some content
<?php
$front_page = node_load("111");
$page_intro = field_view_field('node',$front_page,'field_page_intro');
print render($page_intro);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment