這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Ostrichcize

外掛說明

At the first sign of trouble, an ostrich buries its head in the sand. Ostrichcize allows a plugin or theme developer to
bury his or her head in the sand by turning off error reporting for select plugins or the current theme.

If you have ever installed a plugin or worked on a site with a plugin that throws numerous of errors and notices, but do
not have the time to fix the issue, you can turn off those notices with this plugin. By simply filtering the plugin, you
can add to the list of plugins for which no notices will be shown.

To add to this list simply write something like:

function my_ostrichcized_plugins( $slugs ) {
    $slugs[] = 'debug-bar-cron';
    return $slugs;
}

function my_pre_my_ostrichcized_plugins() {
    add_filter( 'ostrichcized_plugins', 'my_ostrichcized_plugins' );
}

add_action( 'plugins_loaded', 'my_pre_my_ostrichcized_plugins', 1 );
</pre>

Note that the filter must be added before any offending code is run in order to redefine the error reporting function
before it is first called. The means that in most cases, this code will need to run from a plugin and not a theme.

To turn off PHP error reporting for a theme, run:

function my_ostrichcize_theme() {
    add_filter( 'ostrichcize_theme', '__return_true' );
}
add_action( 'plugins_loaded', 'my_ostrichcize_theme', 1 );
</pre>

Thanks to Jeremy Felt (@jeremyfelt) for assistance naming the plugin!

安裝方式

  1. Install Ostrichcize if not already installed (https://wordpress.org/extend/plugins/ostrichcize/)
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Setup Ostrichcize rules as noted above

常見問題集

Is there a UI to add ostrichcize rules?

No. At this time, I really only want developer’s using this tool. Any WordPress developer that is messing with error
handling should easily be able to make this plugin work. If not, the developer should not be using this tool. Similarly,
users should not be messing with error reporting.

Can I run this in production?

You certainly can, but that is not the intent of the tool. It is best to only run this in development.

What is the use case?

This plugin is inspired by having installed countless plugins that throw error notices. Many times, these are small,
non-critical errors. Since I often do not have time to fix the errors myself, I allow them to continue to muck up my
error logs or on screen display of errors. I thought it would be nice to have a way to hide these errors so that only
errors due to my custom code are displayed. Ostrichcize allows you to do just that.

使用者評論

2016 年 9 月 3 日
Works, and is nice for those of us who like to use notices/warnings to keep us honest in our PHP while still utilizing poorly-written plugins. Wish this had a UI to configure it, instead of just hooks, especially since you need to have a plugin to take advantage of it.
閱讀全部 1 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Ostrichcize〉的開發相關工作。

參與者

將〈Ostrichcize〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

0.1

  • Initial release