[Plugin: Meta Box] Get cloned values separated by comma
-
$metas = get_post_meta( get_the_ID(), 'meta_key', true ); foreach ( $metas as $meta ) { echo $meta; }
This will get the values like: Value1Value2Value3
Wanted like this: Value1, Value2, Value3
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Meta Box] Get cloned values separated by comma’ is closed to new replies.