Not sure what I am doing wrong,
I have this field showing on homepage
<?php
piklist('field', array(
'type' => 'text'
,'field' => 'exercise'
,'add_more' => true
,'label' => __('Workout')
));
?>
Then looping
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
get_post_meta($post->ID, 'exercise', true);
piklist(get_stylesheet_directory() . '/workout_schedule_template', array('data' => $exercise, 'loop' => 'data'));
endwhile;
endif;
?>
template
<code><?php echo $data['$exercise']; ?></code>