Display Environment Type

説明

WordPress 5.5 では、環境タイプ (開発、ステージング、本番) を区別する方法が導入されました。こちらのプラグインは、管理バーにサイトの環境タイプを表示します。

新機能の詳細情報

スクリーンショット

  • 管理バーの表示 (本番環境)。
  • 管理バーの表示 (ステージング)。
  • 管理バーの表示 (開発)。
  • 管理バーの表示 (カスタム)。
  • 「一目でわかる」ウィジェット。

インストール

  1. WordPress の「プラグイン」メニューを使用してインストールし、有効化します。

FAQ

環境タイプにカスタム色を設定できますか ?

現在、色は固定されています。これは、混乱を避けるために行っています。ユーザー色を設定可能であれば、関連するすべてのサーバーでまったく同じに設定する必要があります。

カスタム環境タイプを定義すると何が起こりますか ?

カスタムタイプはもともと WordPress 5.5 で追加されましたが、5.5.1 で削除されました。このプラグインではサポートされなくなりました。

管理バーが有効化されているログインユーザーの場合、サイトのフロントエンドに何も表示されないのはなぜですか ?

管理者以外のユーザーには表示されません。その理由は、ほとんどの場合、ログインしている購読者の管理バーに明るい色のボックスを表示して煩わせたくないからです。同じ理由で、wp-admin の購読者に対しても環境タイプは非表示になっています。

追加の制御を行うには ‘det_display_environment_type ‘ フィルター フックを使用できます:

function rt_det_display_filter( $display ){
    // Disable the environment type display for user ID 2.
    return ( get_current_user_id() !== 2 );
}
add_filter( 'det_display_environment_type', 'rt_det_display_filter' );

評価

2024年1月24日
Five stars for Display Environment Type! Huge thanks to the author for creating this gem. The plugin might be small, but it’s incredibly useful, doing exactly what you’d expect without any unnecessary clutter. No settings hassle – just install and get to work seamlessly.
2022年4月26日
I switch a LOT between production sites and a clone made for testing, when creating a real staging environment is not possible. More than once, I have unintentionally made changes to the wrong instance of the site. That’s no fun. Display Environment Type makes it very clear what I’m working on, when I should pay extra attention. Recommended.
2020年8月21日
Have you ever accidentally added test content to a productive website? You can now define a constant in your wp-config.php to distinguish between development, staging and productuion sites. To make this visible, this lean but helpful plugin adds an indicator to the admin bar and dashboard widget which helps to avoid mistakes as adding “Lorem ipsum” to your productive site. 🙂 Plugin works like a charm. No settings needed. Install, activate and feel happy.
4件のレビューをすべて表示

貢献者と開発者

Display Environment Type はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Display Environment Type” は14ロケールに翻訳されています。 翻訳者のみなさん、翻訳へのご協力ありがとうございます。

“Display Environment Type” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

1.4.1 (2024-04-09)

  • Fixed UI problem with staging and drop-down menu becomes unreadable (thanks @ericsackett).

1.4.0 (2024-04-07)

  • Code improvements and UI fixes – showing icon on mobile, and set colors on At a Glance. Added WP version in drop-down menu.

1.3.5 (2025-04-04)

  • Added a drop-down submenu with WP constants and their values (enabled / disabled).

1.3.4 (2024-12-20)

  • Added a filter hook to modify the envronment’s display name (thanks @erniecom).

1.3.3 (2024-07-05)

  • Internationalization improvements by @tekapo.

1.3.2 (2023-11-10)

  • Assessibility improvements by @mrwweb.

1.3.1 (2022-03-30)

  • Skip loading of the CSS file on the front end if toolbar is hidden (thanks @tflight).

1.3 (2020-08-25)

  • Code refactor (thank you, @markjaquith).
  • Environment type now hidden by default for subscribers.

1.2.1 (2020-08-23)

  • Removes the distracting hover effect (thank you, @markjaquith).
  • Hardening against XSS (props @markjaquith).

1.2 (2020-08-21)

  • Adds a filter hook to allow you to determine whether the environmment is displayed.

1.1 (2020-08-21)

  • Added a conditional front-end display (admins only).
  • Improved plugin initialization.

1.0.2 (2020-08-21)

  • Removed the (unstyled) display on the front-end admin bar.
  • Added a FAQ section to the readme file.

1.0.1 (2020-08-21)

  • Fixed the plugin description and plugin URI.

1.0 (2020-08-20)

  • Initial release.