mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
352 B
Text
9 lines
352 B
Text
function wp_load_custom_wp_admin_style() {
|
|
$current_screen = get_current_screen();
|
|
if ( strpos( $current_screen->base, 'site-health' ) === false ) {
|
|
return;
|
|
} else {
|
|
echo '<style type="text/css">.health-check-title-section .site-health-progress {display:none;}</style>';
|
|
}
|
|
}
|
|
add_action( 'admin_print_styles', 'wp_load_custom_wp_admin_style' );
|