Load next post by ID on a single page

It seems that I found a solution to this and it is pretty easy. So I’m gonna post all the code for future uses: single.php <?php get_header(); ?> <?php $post = get_post(); $post_cat = get_the_category($post); $data = collection_data_json($post_cat[0]->term_id, $post->ID); $data_details = collection_order_permalink($data); $author_id = intval($post->post_author); ?> <script type=”text/javascript”> var cat = “<?php print $post_cat_id ?>”; … Read more