I don’t see “Patterns” in your screenshots I assume because of a language difference, but I think it’s referring to https://wordpress.org/patterns/ in which case, you can choose to ignore it if you don’t need to interact with it (just like Plugins and Themes).
@macmanx. O, sure. I’m sorry… The screenshot shows a page that can be accessed from “Appearance” -> “Patterns”.
Page slug is edit.php?post_type=wp_block
I removed this item from the menu in the admin panel. And I don’t use the block editor…
I don’t like that WordPress is turning into a monster with a huge amount of unnecessary functionality. Which must be disabled (hidden) when creating each new site. The keyword here is “hidden” 🙁
Ah ok, then that is what I suspected.
Lots of folks find it useful, and of course other folks are welcome to ignore it.
Keep in mind WordPress’s development philosophy: https://wordpress.org/about/philosophy/
Keep in mind WordPress’s development philosophy
Yes, you are right. 100%! Mea culpa…
/* Remove Patterns submenu in Appearance */
function mytheme_remove_menu_subitem() {
$page = remove_submenu_page( 'themes.php', 'edit.php?post_type=wp_block' );
}
add_action( 'admin_menu', 'mytheme_remove_menu_subitem', 999 );
This will remove the Patterns sub-item from your admin panel