Support

Account

Home Forums Add-ons Repeater Field Post Object in Repeater Field. Need Rows Count Reply To: Post Object in Repeater Field. Need Rows Count

  • Hi @phej

    That’s weird. Could you var_dump() the returned data like this:

    echo <pre>;
    var_dump(get_field( 'positions' ));
    echo </pre>;

    Also, could you please try to add the post/page ID as the second parameter of get_field() like this:

    echo <pre>;
    var_dump(get_field( 'positions', 99 ));
    echo </pre>;

    Where ’99’ is the post/page ID that has the repeater field.

    Thanks 🙂