Plugin Author
Steven
(@shazahm1hotmailcom)
@ guardianfx
Yep, I know … backwards compatibility my friend. Only small number has even updated to 4.0. Because a function has, just, been deprecated, does not remove right away, it means you should plan on removing which I have and will be done at a later date when more users are on 4.0.
On a production site you should configure WordPress to log error per the Codex by adding this to you’re wp-config.php file.
@ini_set( 'log_errors', 'On' );
@ini_set( 'display_errors', 'Off' );
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );
That should fix you up.