Skip to content

Instantly share code, notes, and snippets.

@rniswonger
Created July 6, 2026 20:50
Show Gist options
  • Select an option

  • Save rniswonger/060f6bd86dbdc8ff459063879f816a7d to your computer and use it in GitHub Desktop.

Select an option

Save rniswonger/060f6bd86dbdc8ff459063879f816a7d to your computer and use it in GitHub Desktop.
WordPress must-use plugin to suppress notice and deprecation errors
<?php
// modified from: https://stackoverflow.com/a/77340500
// place this file in the wp-contet/mu-plugin folder
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment