Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Disable default block theme patterns – Code DPlugins

Disable default block theme patterns


To disable the default block patterns in WordPress (so only your custom patterns are available), use the following method in your custom blank theme:

<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

add_action('init', function() {
    remove_theme_support('core-block-patterns'); // Disable default block patterns
});

add_filter('should_load_remote_block_patterns', '__return_false'); // Prevent fetching patterns from WordPress

Add this to the functions.php or you can use code snippet editors.

Click to Copy