isset( $_POST[ 'dpun' ] ), 'dwtu_setting' => isset( $_POST[ 'dwtu' ] ), 'dwcun_setting' => isset( $_POST[ 'dwcun' ] ), 'den_setting' => isset( $_POST[ 'den' ] ), ]; update_option( 'dwun_plugin_options', $dwun_values ); // Print the success message. echo '

Settings updated successfully.

'; } // Get option settings values. $settings_values = get_option( 'dwun_plugin_options' ); ?>

Disable Admin Notices — Settings

Admin notifications

Do you know the situation, when some plugin offers you to update to premium, to collect technical data and shows many annoying notices? You are close these notices every now and again but they newly appears and interfere your work with WordPress. Even worse, some plugin’s authors delete “close” button from notices and they shows in your admin panel forever.

Plugin Update
Hide all plugins update notifications.
>
Theme Update
Hide all themes update notifications.
>
WordPress Core Update
Hide WordPress core version update notifications.
>
Disable auto-update Email Notifications
Disable plugins & themes auto-update email notifications.
>

Need Support

Do you want the plugin to improved and update?

Help the author, leave a review on wordpress.org. Thanks to feedback, I will know that the plugin is really useful to you and is needed.

Having Issues?

We provide free support for this plugin. If you are pushed with a problem, just create a new ticket. We will definitely help you!

  • If you find a php error or a vulnerability in plugin, you can raise an issue in github.
Settings'; array_unshift($links, $settings_link); return $links; } add_filter( 'plugin_action_links_' . DWUN_PLUGIN_BASE, 'dwun_plugin_settings_link' ); /** * Disable WordPress theme update notifications. * * @return void */ function dwun_plugin_disable_theme_updates() { global $wp_version; return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,); }