diff --git a/wp-admin/menu.php b/wp-admin/menu.php
index a9853e3969..ed7c33932d 100644
a
|
b
|
foreach ( array_merge( $builtin, $types ) as $ptype ) { |
130 | 130 | $menu_icon = 'dashicons-admin-post'; |
131 | 131 | if ( is_string( $ptype_obj->menu_icon ) ) { |
132 | 132 | // Special handling for data:image/svg+xml and Dashicons. |
133 | | if ( str_starts_with( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || str_starts_with( $ptype_obj->menu_icon, 'dashicons-' ) ) { |
| 133 | if ( str_starts_with( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) |
| 134 | || str_starts_with( $ptype_obj->menu_icon, 'dashicons-' ) |
| 135 | || 'div' === $ptype_obj->menu_icon |
| 136 | || 'none' === $ptype_obj->menu_icon ) { |
134 | 137 | $menu_icon = $ptype_obj->menu_icon; |
135 | 138 | } else { |
136 | 139 | $menu_icon = esc_url( $ptype_obj->menu_icon ); |