Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPress管理画面でフッターを変更する方法

WordPressの管理画面でフッターを変更することで、個人的なタッチを加えることができます。これは、あなた自身のクレジットを追加したり、クールな何かを宣伝したり、ユーザーに役立つリンクを含めることを意味します。

厄介なのは、こうした調整はしばしばコードに潜り込む必要があることだ。やり方を間違えると、サイトの機能を壊してしまったり、セキュリティ上の問題に脆弱になってしまうかもしれない。

様々なツールや方法を検討した結果、WPCodeが最も簡単で安全なオプションを提供していることがわかりました。このガイドでは、WordPressの管理画面でフッターをカスタマイズするための各ステップを説明します。

How to change the footer in WordPress admin

管理画面フッターを変更する理由

WordPressウェブサイトの管理エリアにあるデフォルトのフッターは非常に基本的なもので、ほとんどのユーザーにとってあまり意味がありません。

WordPressのトップページへのリンクがあり、現在実行しているWordPressのバージョンが表示されます。更新がある場合は、フッターのリンクが変更され、サイトを更新することができます。

Change the WordPress Admin Panel footer

それだけです。しかし、自分のサイトへのリンクを貼ったり、ユーザーに役立つリンクを提供するように変更したり、あるいは、どのみちこのスペースはそれほど頻繁に見られるものではないので、完全に削除することもできます。

そこで今回は、WordPressの管理画面フッターを2種類の方法で変更する方法をご紹介します。お好きな方法をクリックしてください:

準備はいいかい?さっそく始めよう!

管理ダッシュボードのフッターを変更するには、テーマのfunctions.phpファイルにコード・スニペットを挿入します。

通常、WordPressのコアファイルへのコード・スニペットの貼り付けは、ちょっとしたミスでもサイトを壊してしまう可能性があるため、上級ユーザーのみに推奨しています。さらに、テーマを更新すると、functions.phpファイルへの変更はすべて消去されます。

そのため、誰でも安全にWordPressファイルにコード・スニペットを追加できる無料のWPCodeプラグインを使用します。

WPCode's homepage

注:このプラグインが気に入った場合は、WPCodeプレミアムバージョンへのアップグレードをお勧めします。このアップグレードにより、100以上のエキスパートが承認したコードスニペットにアクセスできるようになり、すべてのスニペットのリビジョン履歴を見ることができ、コード実行のスケジュールなどが可能になります!詳しくは、WPCodeのレビューをご覧ください。

まず、WPCodeをインストールして有効化しましょう。詳しい手順は、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。

それが完了したら、管理ダッシュボードの左メニューにあるCode Snippets ” + Add Snippetに行く必要がある。

次に、「フッター」を検索し、「管理パネルのフッターテキストを変更する」という項目にマウスオーバーするだけです。

ここからは、「スニペットを使う」ボタンをクリックするだけだ。

Use snippet in WPCode to change the footer

これで「スニペットの編集」画面が表示されます。WPCodeはライブラリから追加したスニペットの設定を自動的に行います。

次に、$footer_textで始まる行を、新しいコンテンツに表示したい内容に変更します。リンクやプレーンテキスト以外のものを含める場合は、HTMLを使う必要がある。

WPCode edit snippet to change footer text

フッターテキストのカスタマイズが終わったら、スイッチを「Active」に切り替え、「Update」ボタンをクリックします。

新規: 管理画面フッターがあなたのサイトに表示されます。WPCodeからデフォルトのスニペットを有効にすると、このように表示されます:

The example admin panel footer for the WPCode snippet

このコード・スニペットの動作が気に入ったら、コード・スニペット “ ライブラリにあるWPCodeスニペット・ライブラリをご覧ください。

これで、無料でプラグインに付属するすべてのものが表示されます。

WPCode library

WPCodeのビルトインライブラリには、設定済みのスニペットが多数あります。例えば、WPCodeは、WordPress REST API、WP管理バー、またはメディア添付ページを無効にすることができます。

WordPress管理画面のフッターを変更するもう一つの方法は、テーマの functions.phpファイルにコードを追加することです。ちょっとしたミスでもサイトを壊してしまう可能性があるので、上級者のみにお勧めします。

詳しくは、ウェブ上のコード・スニペットをWordPressに貼り付ける方法の詳細ガイドをご覧ください。

まず、FTPまたはWordPressホスティングプロバイダーのファイルマネージャー経由でサイトに接続する必要があります。次に、サイトの/wp-content/themes/your_theme/ディレクトリに向かいます。

Where to find functions.php

ここからはファイルを編集するだけだ。

メモ帳のようなプレーンテキストエディタで開くこともできるし、ホストがビルトインエディタを提供していればそれを使うこともできる。

このコードを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は、本当に〜してもよいですか?

エディター上のラインはこんな感じだ:

The code after it was pasted into functions.php

最後に、ファイルを保存してください。

すぐに管理ダッシュボードに新しいフッターが表示されるはずです。

The example admin panel footer for the WPCode snippet

ボーナスのヒントWordPress管理画面のその他のカスタマイズテクニック

WordPressをもっとカスタマイズしたいですか?さまざまなカスタマイズを始めるのに役立つ簡単なガイドをまとめました:

この記事がWordPress管理エリアのフッターを変更するのにお役に立てば幸いです。次は、クリエイティブブロックを克服するためのAIを使った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.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

17件のコメント返信を残す

  1. 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.

  2. parul gupta

    i want to change footer credentials in quest theme.please help me out.

  3. 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.

  4. Wayne

    How do I find the functions.php file in the Colormag theme?

  5. Arun

    Hello How I can adjust the bottom of my wordpress made website ???

  6. mohammad

    i want custom footer without plugin and admin change footer !

  7. 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 :)

  8. 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).

  9. Durrell Thomas

    What is the name of the plug-in “what next | Related Posts that is on your blog?

  10. 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?

  11. 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.

      管理者

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。