你不能轻易地只更改该链接的URL,因为没有允许你这样做的过滤器,但是。。。
next_post_link
使用get_next_post_link
. 这些函数中都没有筛选器,但是。。。get_next_post_link
使用get_adjacent_post_link
在这个函数的内部,你可以看到{$adjacent}_post_link
钩
现在我们可以检查一下docs for that hook. 然后编写一些代码:
function my_next_post_link($output, $format, $link, $post, $adjacent) {
return \'<a href="<MY LINK">MY LINK LABEL</a>\';
}
add_filter( \'next_post_link\', \'my_next_post_link\', 10, 5 );
附言:很可能你还需要在其中添加一些条件,这样你就不会更改网站上的每个链接,只更改你想更改的链接。