mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
18 lines
249 B
PHP
18 lines
249 B
PHP
<?php if ( ! defined( 'ABSPATH' ) ) exit;
|
|
|
|
global $wpdb;
|
|
|
|
$wpdb->update( "{$wpdb->usermeta}",
|
|
array(
|
|
'meta_value' => serialize( array() ),
|
|
),
|
|
array(
|
|
'meta_key' => 'um_account_secure_fields',
|
|
),
|
|
array(
|
|
'%s'
|
|
),
|
|
array(
|
|
'%s'
|
|
)
|
|
); |