Support

Account

Home Forums Add-ons Repeater Field Using get_post_meta as Fallback on Repeaters Reply To: Using get_post_meta as Fallback on Repeaters

  • Wow you do know your stuff! – Many thanks that works perfectly, the only thing that i don’t grasp 100% is
    $row_count--;

    I do understand by its use we are moving from zero based index to get the last proper row.

    You said earlier that:
    $rows--; is short form of $rows = $rows-1;

    So in the code that works, instead of using $row_count--; i tried $row_count-1;
    but that outputs nothing, I was wondering for my own curiousity how to use arithmetic operator on the row count so for instance I could output the 2nd last one.