Hi! I did change to link-template.php in_same_term to be true (code below) but still its not working. Did i do it wrong?
function get_previous_post( $in_same_term = true, $excluded_terms = ”, $taxonomy = ‘category’ ) {
return get_adjacent_post( $in_same_term, $excluded_terms, true, $taxonomy );
}
function get_next_post( $in_same_term = true, $excluded_terms = ”, $taxonomy = ‘category’ ) {
return get_adjacent_post( $in_same_term, $excluded_terms, true, $taxonomy );
}