Using checkboxes like in the example :
[Favorite Fruits]
type = checkbox
value = apple # orange # banana # grape
default = orange # grape
I try do display the selected items, but only the first checked one (for instance "apple") appears in html.
I call the field like this :
<?php echo get_post_meta($post->ID, 'Favorite Fruits', true); ?>
something wrong ?
(I'm not a php guy, only html/css and wp template tags...)
Thanks !