We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filter to enable automatically moving Fediverse accounts when the domain changes.
/** * Filter to enable automatically moving Fediverse accounts when the domain changes. * * @param bool $domain_moves_enabled * @return bool The filtered value. */ function my_activitypub_enable_primary_domain_moves_callback( bool $domain_moves_enabled ) { // Your code here. return $domain_moves_enabled; } add_filter( 'activitypub_enable_primary_domain_moves', 'my_activitypub_enable_primary_domain_moves_callback' );
bool
$domain_moves_enabled
\apply_filters( 'activitypub_enable_primary_domain_moves', false )
← All Hooks