Code-Snippets-Functions/Execute a function on a child site/WordPress/hide-progress-count-in-site-health-progress-counter.txt

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' );