-
Notifications
You must be signed in to change notification settings - Fork 83
activitypub_enable_primary_domain_moves
github-actions[bot] edited this page Jul 29, 2025
·
8 revisions
Filter to enable automatically moving Fediverse accounts when the domain changes.
add_filter(
'activitypub_enable_primary_domain_moves',
'my_activitypub_enable_primary_domain_moves_callback'
);
function my_activitypub_enable_primary_domain_moves_callback( bool $domain_moves_enabled ) {
// Your code here.
return $domain_moves_enabled;
}-
bool$domain_moves_enabledWhether domain moves are enabled.
apply_filters( 'activitypub_enable_primary_domain_moves', false )Follow @[email protected] for updates and news.