Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created November 15, 2024 08:38
Show Gist options
  • Save tdmrhn/e434872064265abbee3abf67a91167cd to your computer and use it in GitHub Desktop.
Save tdmrhn/e434872064265abbee3abf67a91167cd to your computer and use it in GitHub Desktop.
Blocksy 2 exclude custom post types from customizer
<?php
add_filter('blocksy:custom_post_types:supported_list', function($post_types) {
// Remove 'projects' custom post type from the list of supported post types for customizer
$post_types = array_diff($post_types, ['projects']);
return $post_types;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment