Is it possible to display check box titles. I mean for checkboxe(s) not singular check box.
I have a checkboxes field named "Progress"
I then have checkboxes in the field such as project1,project2, etc
Is it possible to display each checkbox title so that It has
project1: 1
project2: 1
I'm using this code right now and it's only displaying the checkbox field title aka "Progress"
echo(types_render_usermeta_field( "competent-communicator-manual", array(
"show_name" => "true",
"user_current" => "true"
)));
?>
Thanks!