When I print $node->body it prints not just the text in the body text area, but all of the CCK fields and then the body text. How do I separate them so I can theme them individually?

Comments

jrglasgow’s picture

The variable $node->body is a result of the current template. To access the original body (what the node creator typed into the body text area) use the variable $node->content['body']['#value'].