Support

Account

Home Forums Add-ons Repeater Field Advanced Custom Repeater Field Page Navigation Reply To: Advanced Custom Repeater Field Page Navigation

  • Hi Elliot,

    Would it be possible to use the builtin WordPress $paged function instead?
    $page = (get_query_var('paged')) ? get_query_var('paged') : 1;

    And after the loop call the default pagination functions like this?

    next_posts_link();
    previous_posts_link();

    An working example would be very welcome for this indeed.
    Thanks a lot!