Skip to content

Instantly share code, notes, and snippets.

@JulioPotier
Created February 12, 2025 08:34
Show Gist options
  • Save JulioPotier/57cbf7ce937bcd934a1fa0dcc26590eb to your computer and use it in GitHub Desktop.
Save JulioPotier/57cbf7ce937bcd934a1fa0dcc26590eb to your computer and use it in GitHub Desktop.
add_filter( 'doing_it_wrong_trigger_error', function ( $bool, $function_name ) {
if ( '_load_textdomain_just_in_time' === $function_name ) {
$bool = false;
}
return $bool;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment