-4

wo-login.php のロゴに添付されている Powered by Wordpress (wordpress.org) リンクを削除するか、コア ファイルを編集せずに更新したいと考えています。これを行うことは可能ですか?

カイル

4

2 に答える 2

4

@ 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');
于 2013-09-03T17:35:30.937 に答える
2

テーマの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');
于 2012-08-05T21:54:15.600 に答える