Drupal 7 - print content type fields #drupal #d7
// default field output
<?php print render($content['field_EXAMPLE']); ?>
<?php print render($content['body']); ?>
// striped output only
<?php print render($content['field_EXAMPLE']['und'][0]['value']); ?>
<?php print render($content['field_EXAMPLE']['und'][0]['url']); ?>
<?php print render($content['field_EXAMPLE']['und'][0]['email']); ?>
// make sure field isn't empty
<?php $highest_degree = field_get_items('node', $node, 'field_highest_degree'); ?>
<?php if($highest_degree): ?>
<?php print render($content['field_highest_degree']); ?>
<?php endif; ?>