Support

Account

Home Forums Add-ons Repeater Field Custom Template in repeater field Reply To: Custom Template in repeater field

  • Hello Dear,

    Thanks For Replay,

    I am also find solution in custom template in how to use repeater
    like,

    <?php

    $custom_fields = get_post_custom(91);
    $patine = $custom_fields[‘patine’];
    foreach ( $patine as $key => $value1 ) {
    $key . ” => ” . $value1 . “<br />”;
    }
    ?>

    use this function and get array value.
    and array value are used in for loop and create shortcode.