plugin-icon

Ostrichcize

Hide PHP error reporting for specified plugins or the current theme.
평가
4
최근 업데이트일
November 24, 2012
버전
0.1
활성화된 설치 항목
10

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!

무료Creator 요금제에서
활성화된 설치 항목
10
이 플러그인은 다운로드 가능하며 워드프레스 독립 호스트 설치에 사용할 수 있습니다.