-
Notifications
You must be signed in to change notification settings - Fork 19
friends_author_url
github-actions[bot] edited this page Aug 19, 2026
·
5 revisions
Allows modifying the author URL for a post.
add_filter(
'friends_author_url',
function(
string $author_url,
Friends\User $friend_user,
int $post_id
) {
// Your code here.
return $author_url;
},
10,
3
);-
string$author_urlThe author URL. -
Friends\User$friend_userThe friend user if any. -
int$post_idThe post ID.
apply_filters( 'friends_author_url', $friend_user->get_local_friends_page_url(), $friend_user, get_the_id() )apply_filters( 'friends_author_url', $friend_user->get_local_friends_page_url(), $friend_user, get_the_id() )