Skip to content

Instantly share code, notes, and snippets.

@deckerweb
Created January 7, 2012 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deckerweb/1574571 to your computer and use it in GitHub Desktop.
Save deckerweb/1574571 to your computer and use it in GitHub Desktop.
Plugin: WP Single Post Navigation -- Customize parameters for "previous post link" -- add this to functions.php of your theme or child theme
<?php
add_filter( 'wpspn_previous_post_link', 'custom_wpspn_previous_link' );
/**
* WP Single Post Navigation: Add custom filters for "previous post link"
*/
function custom_wpspn_previous_link() {
$args = array (
'format' => '%link', // Change link format
'link' => '&raquo;', // Change link string
'in_same_cat' => FALSE, // Apply only to same category (default: FALSE)
'excluded_categories' => '' // Exclude categories (default: empty)
);
previous_post_link( $args['format'], $args['link'], $args['in_same_cat'], $args['excluded_categories'] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment