[!NOTE] Precisa de ajuda visual para esta etapa? Entre em contato com o nosso suporte em support@oriv.cloud.
Prerequisites
- Access to your ORIV account
- WordPress administrator access for the site
- Permission to add a code snippet or edit site files
- A recent backup before changing site code
Before you start
WordPress update emails are different from ORIV notifications.- ORIV notifications are controlled from
https://app.oriv.cloud/user/notifications. - WordPress update emails are generated by WordPress inside each site.
Recommended method
Use a code snippet manager or a small custom plugin when possible. This keeps the code separate from your active theme. Avoid editing the active theme’sfunctions.php file unless you are comfortable with PHP. A syntax error in functions.php can break the WordPress dashboard, and theme updates can overwrite custom changes.
Step-by-step Guide To Disable WordPress Update Email Notifications
1. Open the WordPress site in ORIV
Log in to ORIV, open Sites, and select the WordPress site where you want to disable update emails.[!NOTE] Precisa de ajuda visual para esta etapa? Entre em contato com o nosso suporte em support@oriv.cloud.
2. Create a backup
Before adding custom PHP code, create a current backup of the site or confirm that a recent backup is available.[!NOTE] Precisa de ajuda visual para esta etapa? Entre em contato com o nosso suporte em support@oriv.cloud.
3. Choose where to add the snippet
Choose one safe place for the code:- A code snippet plugin inside WordPress
- A small custom plugin
- A child theme’s
functions.phpfile
4. Add the snippet to disable successful update emails
Add this snippet if you want to stop successful automatic update emails for WordPress core, plugins, and themes.[!NOTE] Precisa de ajuda visual para esta etapa? Entre em contato com o nosso suporte em support@oriv.cloud.
5. Save and activate the snippet
Save the snippet and activate it. If your snippet plugin supports execution location, run the snippet on the site frontend and admin area, or use the default site-wide option.6. Confirm updates are still enabled
Open Dashboard → Updates in WordPress and confirm your core, plugin, and theme update settings still match your preferred workflow. (Screenshot: WordPress Dashboard Updates page)7. Monitor the next automatic update
After the next automatic update runs, confirm that the site updates normally and that WordPress no longer sends the update notification email you disabled. (Screenshot: WordPress plugins page showing updated plugin version)Disable only one type of WordPress update email
If you do not want to disable all WordPress update emails, use one of these smaller snippets instead.Disable only WordPress core update emails
Disable only plugin update emails
Disable only theme update emails
📄 filename.jsSafer option: keep failure emails for WordPress core
If you want to stop successful core update emails but keep failure emails, use this version for core updates:Expected result
After the snippet is active:- WordPress can continue installing automatic updates.
- Successful update notification emails are no longer sent for the selected update types.
- ORIV notifications are unchanged unless you also update your ORIV notification settings.
- You can still check update history and plugin versions inside WordPress or ORIV.
Troubleshooting
I still receive ORIV notification emails
WordPress snippets only control emails generated by WordPress. To disable ORIV notifications, visit this page Then turn off Email in the notification sections you do not want.I still receive WordPress update emails
Confirm the snippet is active on the correct WordPress site. If you manage multiple websites, add the snippet to each site where you want WordPress update emails disabled.My site shows an error after adding the snippet
Disable the snippet from your code snippet plugin if possible. If you edited a file directly, restore the file from backup or remove the snippet through File Manager or SSH.I use a child theme
You can add the snippet to the child theme’sfunctions.php file, but a code snippet plugin or small custom plugin is safer for most users.
