我不相信有。然而,似乎有一个与“the\\u author\\u posts\\u link”同名的钩子,您应该能够在函数中使用它。php文件。
add_filter(\'the_author_posts_link\', change_link);
function change_link($link){
// You probably want to use some regex here to change the link, or perhaps just a
//str_replace() depending on what you\'re trying to accomplish.
//Then you just return the $link.
return $link;
}