Skip to content

Instantly share code, notes, and snippets.

View taunoha's full-sized avatar

Tauno Hanni taunoha

View GitHub Profile
@taunoha
taunoha / px_get_custom_post_nav.php
Created June 28, 2016 12:36
WordPress Custom Post Type Next/Previous navigation
<?php
/**
* If standard single navigation using previous_post_link and next_post_link don't work try this function.
* By default this function uses date criteria to find next and previous post. See the default values below.
*
*/
function px_get_custom_post_nav( $args = array() )
{
if( ! is_single() ) {
return;