• Resolved valery2016

    (@valery2016)


    After updating to version 6.5.2, the “Patterns” item appeared in the “Appearance” menu.

    I don’t use patterns (and don’t plan to do so in the future). This is the only unique theme here. Why do I need it?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator James Huff

    (@macmanx)

    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).

    Thread Starter valery2016

    (@valery2016)

    @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” 🙁

    Moderator James Huff

    (@macmanx)

    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/

    Thread Starter valery2016

    (@valery2016)

    Keep in mind WordPress’s development philosophy

    Yes, you are right. 100%! Mea culpa…

    Thread Starter valery2016

    (@valery2016)

    /* 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

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘What is this?’ is closed to new replies.