AI Verified

Name

CLOUD Meister: Dashboard

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

cloudmeister

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

12/01/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

CLOUD Meister: Dashboard

 
                    
1// Remove Site Health widget from the dashboard:
2 
3add_action( 'wp_dashboard_setup', 'remove_site_health_widget' );
4function remove_site_health_widget() {
5 global $wp_meta_boxes;
6 unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_site_health'] );
7}
8 
9// Remove the respective option from the menu
10 
11add_action( 'admin_menu', 'remove_site_health_submenu', 999 );
12function remove_site_health_submenu() {
13 $page = remove_submenu_page( 'tools.php', 'site-health.php' );
14}

0

Related Snippets

Please see some snippets below related to this snippet..

WordPress Admin

Unverified

0

add Move to Trash back to editor UI

Added: 1 week ago

Last Updated: 1 week ago

Puts the "Move to Trash" button back in the editor UI. h/t to George Mamadashvili for the code.

WordPress Admin

AI Verified

0

remove options menu e snipettcode menu

Added: 1 year ago

Last Updated: 1 year ago

remove the options and code snippets menu for non-admin users if they have "manage_options" capability.

WordPress Admin

AI Verified

0

Redirect by page ID

Added: 1 year ago

Last Updated: 1 year ago

Wordpress function to redirect one page id to another page id

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WordPress Admin

AI Verified

1

Custom Login 4 Agencies

Added: 1 year ago

Last Updated: 1 year ago

Give your Clients a constant LogIn-Feeling with your CI You can: - add an Image from your Agency Site to the login.form - add a Link to/behind the Image - customize some border-color's - hide t...

WooCommerce

Unverified

0

CLOUD Meister: Checkout shipping inline

Added: 1 year ago

Last Updated: 1 year ago

WordPress Admin

AI Verified

0

enable autoupdater on specific time

Added: 1 year ago

Last Updated: 1 year ago

This enables the Autoupdater only between a specific time range.