Modify previous and next post links to current Authors Other posts
The correct method of doing this since WordPress 4.4 is simply the following: add_filter( “get_next_post_where”, function($where, $in_same_term, $excluded_terms, $taxonomy, $post){ $where .= ” AND p.post_author=””.$post->post_author.”””; return $where; }, 10, 5); add_filter( “get_previous_post_where”, function($where, $in_same_term, $excluded_terms, $taxonomy, $post){ $where .= ” AND p.post_author=””.$post->post_author.”””; return $where; }, 10, 5); Note: Please do not follow levidia1221’s accepted response, … Read more