I have been searching and can't find it.

What I want is to have a node. The nodes body is to go in the 'head' of a views page.

How would I reference that node body?

Thanks in advance

pbz

Comments

marcvangend’s picture

Suppose the header node has id 12:

<?php
$headernode = node_load(12);
print $headernode->body;
?>