Skip to content

Instantly share code, notes, and snippets.

@seanchayes
Created August 8, 2019 14:29
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 seanchayes/5fc48babee969b49ce6ae579169da01d to your computer and use it in GitHub Desktop.
Save seanchayes/5fc48babee969b49ce6ae579169da01d to your computer and use it in GitHub Desktop.
Prevent featured image admin thumb column from appearing on a particular post type
add_filter( 'fiat/restrict_post_types', 'your_theme_name_restrict_post_types' );
function your_theme_name_restrict_post_types( $post_types ) {
array_push($post_types, 'wc_user_membership' );
return $post_types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment