hi
my code :
piklist('field', array(
'type' => 'select'
,'field' => 'j_select'
,'label' => 'Select Box'
,'description' => 'Choose from the drop-down.'
,'help' => 'This is help text.'
,'attributes' => array(
'class' => 'text'
)
,'choices' => array(
'option1' => 'red'
,'option2' => 'blue'
,'option3' => 'yellow'
)
));
and use in loop (single.php) :
color : <?php echo get_post_meta($post->ID,'j_select', true);?>
but result :
color : option1
text feild is work good but select and checkbox dont work !!!
please help me …