I added a new field "mood" (image) to the page content type. Is there any way to access the image stored in this field in the page.tpl.php?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Should be

$node = node_load($nid);
$node->field_mood[$node->language][0]['value'];
link|improve this answer
Thanks. The $node->language was the missing piece in my puzzle. – dantz Jan 13 '11 at 15:55
1  
Remember that CCK has been moved into the core. It's no longer $node->field_language[0]['value']. The field_ prefix is no longer necessary. – Andrew Sledge Jan 13 '11 at 17:15
How would I go about to render a field, just as it is possible in node.tpl.php? render($content['FIELD']) but instead somthing along the ways of render($node->FIELD)? – joar May 15 '11 at 15:20
I found the solution to my comment, I had to use $view = node_view($node); render($view). This was a while ago, more information about node_view is out there. – joar May 23 '11 at 11:43
if you're in the node page, please use <code>$node = menu_get_object();</code> since it gets the node from the page cache. – barraponto Jan 18 at 15:41
feedback

There is a new "field_get_items()" function in drupal 7. The $node variable should already be defined in page.tpl so the first line may not be required.

This will get the field in the appropriate language. There is also an optional parameter to specify the desired language if needed.

$node = node_load($nid);
$values = field_get_items('node', $node, 'mood');
if ($values != FALSE) {
  $val = $values[0]['value'];
}
else {
  // no result
}

reference: http://api.drupal.org/api/drupal/modules--field--field.module/function/field_get_items/7

link|improve this answer
I have a 'Notice: Undefined variable: node' in page.tpl.php; D7. – Disco Dec 7 '11 at 14:51
Ok seems that '$node' is not available in "front" page. – Disco Dec 7 '11 at 15:00
feedback

protected by Community Oct 7 '11 at 20:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.