Skip to content

Instantly share code, notes, and snippets.

@thekendog
Last active November 15, 2024 14:01
Show Gist options
  • Save thekendog/28fd8a2be900878eedfe4876bc68cea9 to your computer and use it in GitHub Desktop.
Save thekendog/28fd8a2be900878eedfe4876bc68cea9 to your computer and use it in GitHub Desktop.
Remove unviewable post types from Blocksy customizer
/**
* Remove unviewable post types from customizer
*/
add_filter(
'blocksy:custom_post_types:supported_list',
function ( $post_types ) {
foreach ( $post_types as $key => $post_type ) {
if ( ! is_post_type_viewable( $post_type ) ) {
unset( $post_types[ $key ] );
}
}
return $post_types;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment