2023年05月16日
WP Total Hacksはもう使えない!!
■ログイン画面のロゴとリンク先変更
fanction.phpに追記
// ログイン画面のロゴ変更
function login_logo() {
echo '<style type="text/css">.login h1 a {background-image: url('.get_bloginfo('template_directory').'/img/login-logo.png);width:310px;height:70px;background-size:310px 70px;}</style>';
}
add_action('login_head', 'login_logo');
// ログイン画面のロゴURL
function custom_login_logo_url() {
return get_bloginfo( 'url' );
}
add_filter( 'login_headerurl', 'custom_login_logo_url' );
■favicon
header.phpに追記
<link rel="Shortcut Icon" type="image/x-icon" href="****faviconのURL****/favicon.ico" />