mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-24 10:42:19 +08:00
8 lines
211 B
Text
8 lines
211 B
Text
<?php
|
|
$users = get_users( array( 'fields' => array( 'ID' ), 'number' => 100 ) );
|
|
foreach( $users as $user ) {
|
|
if ( $user ) {
|
|
update_user_meta( $user->ID, 'show_try_gutenberg_panel', 0 );
|
|
}
|
|
}
|
|
?>
|