There was an error while loading. Please reload this page.
Filters the ATproto DID served at /.well-known/atproto-did.
/** * Filters the ATproto DID served at /.well-known/atproto-did. * * @param string $did * @return string The filtered value. */ function my_atproto_did_callback( string $did ) { // Your code here. return $did; } add_filter( 'atproto_did', 'my_atproto_did_callback' );
string
$did
\apply_filters( 'atproto_did', $did )
← All Hooks