node_field_field.tpl.php in Node Field 7.2
Template file for node_field_field theme. Render single node field.
1 theme call to node_field_field.tpl.php
- node_field_node_content_add_node_fields in includes/
node_field.api.inc - Get render array of node fields.
File
theme/tpl/node_field_field.tpl.phpView source
<?php
/**
* @file
* Template file for node_field_field theme. Render single node field.
*/
if (!$hidden) {
?>
<div class="node-field <?php
print $class;
?>">
<?php
if ($show_title) {
?>
<label class="title"><?php
print $title;
?></label>
<?php
}
?>
<div class="body"><?php
print $value;
?></div>
</div>
<?php
}