Skip to content

Instantly share code, notes, and snippets.

@apeatling
Created February 10, 2023 18:04
Show Gist options
  • Save apeatling/ba8ad18b931712133561e832f223adc4 to your computer and use it in GitHub Desktop.
Save apeatling/ba8ad18b931712133561e832f223adc4 to your computer and use it in GitHub Desktop.
Plugin to remove core block patterns.
<?php
/*
* Plugin Name: Remove Patterns
*/
function remove_patterns() {
remove_theme_support('core-block-patterns');
}
add_action('after_setup_theme', 'remove_patterns');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment