このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Easy Local Site

説明

When working on a local site and a production site at the same time, things can easily get confusing and you forget which site you’re looking at. This plugin adds a hard-to-miss, bright orange reminder to the toolbar and prepends [LOCAL] to the title tag on your local site.

If you’ve imported a database from a production site, you may also want to avoid sending emails out to real users. This plugin overrides the ‘to’ address of all outgoing emails, sending them instead to an address specified by you. This enables you to test contact forms, notifications or any other outgoing email communications. All emails will have the original recipient’s email address prepended to the subject line so you can see at a glance who they were originally intended for.

The WP_LOCAL_DEV constant method

You must use the WP_LOCAL_DEV constant method as outlined by Mark Jaquith: markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips

If the WP_LOCAL_DEV constant is not defined this plugin will do nothing. This means you can safely put it in your mu-plugins folder and include it in your Git repository on a production site.

インストール

To install directly from your WordPress dashboard:

  1. Go to the Plugins menu and click Add New.
  2. Search for Easy Local Site.
  3. Click Install Now next to the Easy Local Site plugin.
  4. Activate the plugin.

Alternatively, see the official WordPress Codex guide to Manually Installing Plugins.

Using the mu-plugins folder is better

Ideally you should install Easy Local Site in wp-content/mu-plugins (plugins in here are ‘Must Use’ and are automatically activated). This will mean that it is always activated, even after migrating a database from a production site where the plugin is not installed/activated, so you don’t have to remember to manually activate it.

The WP_LOCAL_DEV constant method

You must use the WP_LOCAL_DEV constant method as outlined by Mark Jaquith: markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips

If the WP_LOCAL_DEV constant is not defined this plugin will do nothing. This means you can safely put it in your mu-plugins folder and include it in your Git repository on a production site.

Overriding outgoing emails

To override outgoing emails, you must define WP_LOCAL_EMAIL in local-config.php as follows:

define( ‘WP_LOCAL_EMAIL’, ‘me@myemailaddress.com’ );

Download from GitHub

You can also download this plugin from GitHub at https://github.com/lumpysimon/wp-easy-local-site

評価

2017年2月7日
Ever made a change during development or testing content on a website, believing you are just testing you local site but in fact you just changed the live site instead? Or vice versa. With this plugin you get used to the red rectangle with the lettering Local site and the [Local site] prefix in the title bar. It could be a bit more clear that the emails are only redirected when the WP_LOCAL_EMAIL variable is set: define( 'WP_LOCAL_EMAIL', 'me@example.com' );
1件のレビューをすべて表示

貢献者と開発者

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

貢献者

“Easy Local Site” をあなたの言語に翻訳しましょう。

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

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

変更履歴

0.3

  • Use WP_LOCAL_EMAIL constant for email address (for easier use by teams in a version-controlled environment)
  • Prepare for localisation.
  • Add PHPDoc comments

0.2

  • Add email overriding

0.1

  • Initial release