<?php | |
add_filter( 'wpspn_next_post_link', 'custom_wpspn_next_link' ); | |
/** | |
* WP Single Post Navigation: Add custom filters for "next post link" | |
*/ | |
function custom_wpspn_next_link() { | |
$args = array ( | |
'format' => '%link', // Change link format | |
'link' => '«', // Change link string | |
'in_same_cat' => FALSE, // Apply only to same category (default: FALSE) | |
'excluded_categories' => '' // Exclude categories (default: empty) | |
); | |
next_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