Skip to content

Instantly share code, notes, and snippets.

@everaldomatias
Created September 26, 2023 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save everaldomatias/003a4995ba0a1de8168f41609dfe5b13 to your computer and use it in GitHub Desktop.
Save everaldomatias/003a4995ba0a1de8168f41609dfe5b13 to your computer and use it in GitHub Desktop.
<?php
function migrate_user_role_custom_network() {
$users = get_users( ['role' => 'custom_network'] );
foreach ( $users as $user ) {
$user->set_role( 'editor' );
$user->set_role( 'custom_network' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment