Skip to content

Instantly share code, notes, and snippets.

@mircobabini
Created November 14, 2024 18:03
Show Gist options
  • Save mircobabini/75936b49cf720144cce98cdf815f5a0a to your computer and use it in GitHub Desktop.
Save mircobabini/75936b49cf720144cce98cdf815f5a0a to your computer and use it in GitHub Desktop.
WP6.7 bloats the logs with a Deprecation Notice about text domains. Here's the fix.
<?php
add_filter( 'doing_it_wrong_trigger_error', function ( $doing_it_wrong, $function_name ) {
if ( '_load_textdomain_just_in_time' === $function_name ) {
return false;
}
return $doing_it_wrong;
}, 10, 2 );
@mircobabini
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment