Advertisement
tzvij

page navigation periodical

Dec 1st, 2013
1,448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. function mag_check_post_navigation ( $output, $format, $link, $post ) {
  2.  
  3. // if this post is not the current issue then return blank
  4. if ( !has_term( mag_get_current_issue() , 'issue' , $post) ) return '';
  5. return $output;
  6. }
  7.  
  8. // add the check to the next and previous post links - make sure 4 parameters are passed so we get $post
  9. add_filter( 'next_post_link' , 'mag_check_post_navigation', 10, 4);
  10. add_filter( 'previous_post_link' , 'mag_check_post_navigation', 10, 4);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement