how to overwrite next_post_link
You can’t easily change only the URL of that link, because there is no filter that will allow you to do that, but… next_post_link uses get_next_post_link. There are no filters in any of these functions, but… get_next_post_link uses get_adjacent_post_link and inside of that function you can see {$adjacent}_post_link hook. So now we can check docs … Read more