Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Created December 14, 2017 13:37
Show Gist options
  • Select an option

  • Save YurePereira/806c6392332e19bd2a9501a2d8147763 to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/806c6392332e19bd2a9501a2d8147763 to your computer and use it in GitHub Desktop.
Get the previous and next posts in WordPress
<?php
$prevPost = get_adjacent_post(false, '', true);
$nextPost = get_adjacent_post(false, '', false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment