WordPress管理画面のフッターメッセージを変更したいですか?
WordPressダッシュボードにある初期設定のフッターには、サイトがWordPressで作成されたことが記載され、バージョン番号が表示されるだけです。テーマを開発した自分自身をクレジットしたり、プラグインのプロバージョンを宣伝したり、あるいはクライアントのためのサポートリンクを追加したりするために、これを変更したいと思うかもしれない。
この投稿では、WordPressの管理画面でフッターを変更する方法を紹介します。
管理画面フッターを変更する理由
WordPressサイトの管理エリアにある初期設定のフッターはとても基本的なもので、ほとんどのユーザーにとってあまり意味がありません。
WordPressのトップページへのリンクがあり、現在実行しているWordPressのバージョンが表示されます。更新がある場合は、フッターのリンクが変更され、サイトを更新することができます。
それだけです。しかし、自分のサイトへのリンクを貼ったり、ユーザーに役立つリンクを提供するように変更したり、あるいは、どのみちこのスペースはそれほど頻繁に見られるものではないので、完全に削除することもできます。
それでは、WordPressの管理画面フッターを2種類の方法で変更する方法を見ていきましょう。以下のリンクをクリックして、お好みの方法を選択してください:
方法1.WPCodeを使ってWordPress管理画面でフッターを変更する(推奨)
管理ダッシュボードのフッターを変更するには、テーマのfunctions.phpファイルにコードスニペットを挿入します。
通常、WordPressのコアファイルへのコードスニペットの貼り付けは、上級ユーザーのみに推奨しています。なぜなら、ちょっとしたミスでもサイトを壊してしまう可能性があるからです。さらに、テーマを更新すると、functions.phpファイルへの変更はすべて消去されます。
そのため、誰でも安全にWordPressファイルにコード・スニペットを追加できる無料のWPCodeプラグインを使用します。
まず、WPCodeをインストールし、有効化する必要があります。詳しい手順については、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。
それが完了したら、管理ダッシュボードの左メニューにあるCode Snippets ” + Add Snippetに行く。
フッター」を検索し、「管理画面フッターテキストの変更」という項目にマウスオーバーするだけです。
あとは、「スニペットを使う」ボタンをクリックするだけだ。
次に、スニペットの編集画面に移動します。WPCodeはライブラリから追加したスニペットの設定を自動的に行います。
次に、$footer_textで始まる行を、新しいコンテンツに表示したい内容に変更します。リンクやプレーンテキスト以外のものを含める場合は、HTMLを使う必要がある。
フッターテキストをお好みに変更したら、スイッチを「有効化」に切り替え、「更新」ボタンをクリックするだけです。
新しい管理画面フッターがサイトに表示されます。特定の変更によって異なりますが、WPCodeから初期設定のスニペットを有効化すると、このように表示されます:
このコード・スニペットの動作が気に入ったら、コード・スニペット “ ライブラリにあるWPCodeスニペット・ライブラリをご覧ください。
これは、プラグインに無料で含まれているすべてのものを表示します。
WPCodeのビルトインライブラリには、設定済みのスニペットが多数あります。例えば、WPCodeはWordPress REST API、WP管理バー、またはメディア添付ファイルを無効化することができます。
方法2.WordPress管理画面のフッターを手動で変更する。
WordPressの管理画面でフッターを変更するもう一つの方法は、テーマの functions.phpファイルにコードを追加することです。ちょっとしたミスでもサイトを壊してしまう可能性があるため、上級ユーザーのみにお勧めします。
詳しくは、ウェブ上のコード・スニペットをWordPressに貼り付ける方法の詳細ガイドをご覧ください。
まず、FTPまたはWordPressホスティングサービスのファイルマネージャーからサイトに接続する必要があります。次に、サイトの/wp-content/themes/your_theme/ディレクトリに移動します。
このコードをfunctions.phpファイルにコピー&ペーストするだけです。
add_filter(
'admin_footer_text',
function ( $footer_text ) {
// Edit the line below to customize the footer text.
$footer_text = 'Powered by <a href="https://www.wordpress.org" target="_blank" rel="noopener">WordPress</a> | WordPress Tutorials: <a href="https://www.wpbeginner.com" target="_blank" rel="noopener">WPBeginner</a>';
return $footer_text;
}
);
サンプルコードの$footer_textで
始まる行のHTMLは、本当に〜してもよいですか?
最後にファイルを保存します。
すぐに管理ダッシュボードに新しいフッターが表示されるはずです。
この投稿がWordPress管理エリアのフッターを変更するのにお役に立てば幸いです。WordPress サイトの構築費用はいくらかかるか、または中小企業に最適なバーチャルビジネス電話番号アプリの専門家による比較もご覧ください。
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Selam Mesfin
In my visual Editor’s toolbar, there is no ‘Insert new tag’ button, how can this be fixed? I wanted to include ‘read more’ to my long paragraphs.
Thank You.
parul gupta
i want to change footer credentials in quest theme.please help me out.
Schofield Bryant
I just tried what was explained above and my website has crashed.
Showing the following error
Fatal error: Cannot redeclare remove_footer_admin() (previously declared in /home/cannabotanica/public_html/wp-content/themes/green-eye/functions.php:4) in /home/cannabotanica/public_html/wp-content/themes/green-eye/functions.php on line 208
Please I need assistance now in reviving the website and correcting the error. Even the admin panel wouldn’t load.
WPBeginner Support
Hi Schofield,
You can remove the code using FTP or File Manager in cPanel.
管理者
Wayne
How do I find the functions.php file in the Colormag theme?
Arun
Hello How I can adjust the bottom of my wordpress made website ???
mohammad
i want custom footer without plugin and admin change footer !
balbeer
i am not able to edit the footer that is copyright @ in travelify theme please help to edit that
Tommy
Try use plugin “Cliro – Custom Admin Role for Client” you will easy to edit footer in backend with more option. I used it and very happy
ansuman
how to edit copyright footer
Samuel Dellicour
The closing P tag should be removed, it is not necessary. The text will automatically be wrapped with a paragraph (with class and id).
Durrell Thomas
What is the name of the plug-in “what next | Related Posts that is on your blog?
Editorial Staff
It’s not custom coded (combination of YARRP and html/css codes)
管理者
Ash Blue
This rocks my socks, I love being able to edit the WP admin screen. Will there be tutorials here soon for WP 3.0?
Konstantin
Unfortunately you neglected to mention to hook it to the “admin_footer_text” filter. This is what’s missing:
add_filter('admin_footer_text', 'remove_footer_admin');
Editorial Staff
Thanks for notifying us. We are really sorry, this mistake was on our end.
管理者
Nina
Great tutorial, will use