Home › Forums › Add-ons › Repeater Field › ACF Repeater comma separated text sub_fields
This is my parent repeater field. In which I created two sub_fields to enter text for father and mother, but now I want to show them as comma separated, as I am not php familiar so please help me out.
<?php while(the_repeater_field('parents')): ?>
<?php if($values = get_field('parents') ): ?>
<?php endif; ?>
<?php if( get_sub_field('father') ): ?>
<?php the_sub_field('father'); ?>
<?php endif; ?>
<?php if( get_sub_field('mother') ): ?>
<?php the_sub_field('mother'); ?>
<?php endif; ?>
<?php endwhile; ?>
also I read this: https://support.advancedcustomfields.com/forums/topic/comma-separated-array-values/ but Im not able to figure it out.
The function the_repeater_field()
is deprecated.
if (have_rows('parents')) {
while (have_rows('parents')) {
the_row();
if (get_sub_field('father')) {
the_sub_field('father');
}
if (get_sub_field('father') && get_sub_field('mother')) {
echo ', ';
}
if (get_sub_field('mother')) {
the_sub_field('mother');
}
}
}
It is excessive to add opening and closing php tags on every line of code and they are not needed.
<?php
if (have_rows('parents')) {
while (have_rows('parents')) {
the_row();
if (get_sub_field('father')) {
the_sub_field('father');
}
if (get_sub_field('father') && get_sub_field('mother')) {
echo ', ';
}
if (get_sub_field('mother')) {
the_sub_field('mother');
}
}
}
?>
You must be logged in to reply to this topic.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.