wo-login.php のロゴに添付されている Powered by Wordpress (wordpress.org) リンクを削除するか、コア ファイルを編集せずに更新したいと考えています。これを行うことは可能ですか?
カイル
@ Chaser324はほぼ正しいです。結果をエコーする代わりに、結果を返す必要があります。
// changing the logo link from wordpress.org to your site
function my_login_url() { return bloginfo('url'); }
// changing the alt text on the logo to show your site name
function my_login_title() { return get_option('blogname'); }
// calling it only on the login page
add_filter('login_headerurl', 'my_login_url');
add_filter('login_headertitle', 'my_login_title');
テーマのfunctions.php
ファイルに、これを追加します。
function my_login_css() {
echo '<link rel="stylesheet" href="' . get_stylesheet_directory_uri() .'/path_to_dir_in_your_theme/login.css">';
}
add_action('login_head', 'my_login_css');
login.css
次に、必要な変更を行うカスタム ファイルを作成します。
ログイン ロゴのリンクと代替テキストを Wordpress.org からサイトのタイトル/URL に変更するには、functions.php
ファイルで次のフィルターを使用します。
// changing the logo link from wordpress.org to your site
function my_login_url() { echo bloginfo('url'); }
// changing the alt text on the logo to show your site name
function my_login_title() { echo get_option('blogname'); }
// calling it only on the login page
add_filter('login_headerurl', 'my_login_url');
add_filter('login_headertitle', 'my_login_title');