Which of the following snippets disable
depreciated warnings in WordPress like this one ?
“Deprecated: Assigning the return value of new
by reference is deprecated in /home//public_html/hub/wp-settings.php on line
647”
Answers:
1.
define(E_DEPRECATED,
false);
2.
error_reporting(E_ALL
^ E_DEPRECATED);
3.
define(E_NOTICE, false);
4.
error_reporting(WP_DEBUG,
true)