-
Notifications
You must be signed in to change notification settings - Fork 85
webfinger_user_data
github-actions[bot] edited this page Oct 6, 2025
·
1 revision
/**
* Callback function for the 'webfinger_user_data' filter.
*
* @param mixed $initial_jrd
* @param mixed $uri
* @param mixed $user
* @return mixed The filtered value.
*/
function my_webfinger_user_data_callback( $initial_jrd, $uri, $user ) {
// Your code here.
return $initial_jrd;
}
add_filter( 'webfinger_user_data', 'my_webfinger_user_data_callback', 10, 3 );
$initial_jrd
$uri
$user
apply_filters( 'webfinger_user_data', $initial_jrd, $uri, $user )
Follow @[email protected] for updates and news.