is_block_editor() ) { // Gutenberg page on 5+. return true; } return false; } /** * Return true if the current page is the WP Admin dashboard. */ public static function is_dashboard() { $screen = get_current_screen(); return 'dashboard' === $screen->id; } }