Skip to content

Instantly share code, notes, and snippets.

@mrkdevelopment
Created June 16, 2023 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrkdevelopment/58e26482ae6a678163670be8fef8d141 to your computer and use it in GitHub Desktop.
Save mrkdevelopment/58e26482ae6a678163670be8fef8d141 to your computer and use it in GitHub Desktop.
Remove core theme support
if ( ! function_exists( 'custom_setup' ) ) {
function custom_setup() {
// Remove core block patterns.
remove_theme_support( 'core-block-patterns' );
}
}
add_action( 'after_setup_theme', 'custom_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment