Render field in node.tpl.php
    <?php if (!$page): ?>
      <h2<?php print $title_attributes; ?>>
        <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
      </h2>
    <?php endif; ?>
    <?php if (render($content['body'])) :?>
      <div class="field-description"><?php print render($content['body']); ?></div>
    <?php endif; ?>