Unsafe
By alexbrowp on November 27, 2024
When you log out, the session is not closed and you can still go to wp-admin. Also, redirecting wp-admin to the custom login page doesn't help with security
Image authentication image is not displayed
By brave warrior (nagabuchi) on September 24, 2023
After a recent update, images for image authentication are often not displayed. Do you know what's causing it? thank you.
.
By wpuserjp202306t on July 27, 2023
.
ログイン保護に利用しています
By Takahashi Fumiki (Takahashi_Fumiki) on June 23, 2023
誰でもユーザーを登録できるサイトを作っているのですが、ログイン保護機能を利用しています。スパムアカウントが減りました。
解決済/ループバックリクエストでの問題(サイトヘルス)
By tsutlnps149 on February 6, 2021
Multisite is not supported
By T. Sagawa (tscontenna) on September 15, 2020
Good Support
By lw53 on August 31, 2020
Very effective tool
By vaclavek on June 7, 2020
ログインしていない状態で/wp-admin/にアクセスするとurl変更したログイン画面にリダイレクトされてしまう
By Anonymous User 16694661 (anonymized_16694661) on December 12, 2018
add_action('init', 'remove_default_redirect');
add_filter('auth_redirect_scheme', 'stop_redirect', 9999);
function stop_redirect($scheme)
{
if ( $user_id = wp_validate_auth_cookie( '', $scheme) ) {
return $scheme;
}
global $wp_query;
$wp_query->set_404();
get_template_part( 404 );
exit();
}
よろしくお願いいたします。Great tool, simple yet powerful.
By unostar on October 29, 2017