There was an error while loading. Please reload this page.
Filters whether RFC 7591 dynamic client registration is allowed.
Enabled by default so C2S clients can register on the fly. Return false to restrict registration to pre-configured clients only.
/** * Filters whether RFC 7591 dynamic client registration is allowed. * * Enabled by default so C2S clients can register on the fly. * Return false to restrict registration to pre-configured clients only. * * @param bool $allowed * @return bool The filtered value. */ function my_activitypub_allow_dynamic_client_registration_callback( bool $allowed ) { // Your code here. return $allowed; } add_filter( 'activitypub_allow_dynamic_client_registration', 'my_activitypub_allow_dynamic_client_registration_callback' );
bool
$allowed
\apply_filters( 'activitypub_allow_dynamic_client_registration', true )
← All Hooks