Loop with array of posts using ‘Advanced Custom Fields’ plugin [closed]

http://codex.wordpress.org/Function_Reference/paginate_links

  <?php echo paginate_links( $args ) ?> 

Disclaimer: I’m not familiar with the Advance Custom Fields plugin.

The pagination would have to be setup before you enter into the WordPress loop. Taking a count of all the available posts stored inside the the $post_objects, you would pass that variable into the paginate_links function.

You’ll also collect the $paged variable from the wp_query object which should be set by default if pagination is working correctly.

There are a couple of other properties that you would have to set as well, but you can reference the link above for full details.