wp-local-toolbox
wp-local-toolbox copied to clipboard
A simple plugin to set different defaults for local, staging and production servers.
Not sure about you, but I keep WPLT on the repo across local/dev/staging/live. We've got a few multi-author and membership sites.... Just updated to the latest version of WPLT and...
I'm new to WordPress development but I wanted to contribute. Let me know if you see any potential problems with this implementation. Fixes #21
I'm too tired to Google this. But, before pushing 1.3.0 to WordPress.org we need to add a notice for users to let them know that their search engine visibility settings...
Keeping WPLT's version of Airplane Mode in sync is an ongoing task. Airplane Mode repo: https://github.com/norcross/airplane-mode/ Changes that need to be applied to Airplane Mode for WPLT: - Only use...
Interesting idea in AWP that might apply here. Using an mu-plugin to control error log verbosity. So on "production" you could keep WP_DEBUG on, but only log fatals for example...
I tried this: ``` $mu_plugins = 'false'; // check if plugin is in mu-plugins function my_plugin_override() { $mu_plugins = 'true'; } add_action( 'muplugins_loaded', 'my_plugin_override' ); if ($mu_plugins == 'false') {...