我只是想知道是否可以为所有用户设置show-admin_bar_front
元数据为true。我尝试将这些行放入函数中,但没有结果:
// Create the WP_User_Query object
$wp_user_query = new WP_User_Query(array(\'role\' => \'Subscriber\'));
// Get the results
$users = $wp_user_query->get_results();
// Check for results
if (!empty($users)) {
// loop trough each author
foreach ($users as $user) {
// add points meta all the user\'s data
update_user_meta(5, \'show_admin_bar_front\', \'true\');
}
}