this doesn't seem to appear anywhere in the instructions - but I thought people might like to know that if you put this in your function.php
// Get Custom Field Template Values
function getCustomField($theField) {
global $post;
$block = get_post_meta($post->ID, $theField);
if($block){
foreach(($block) as $blocks) {
echo $blocks;
}
}
}
you can use this
<?php getCustomField('customfieldname'); ?>
to insert the output from a custom field into a template...
Just thought I'd share.