Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_filter( 'fiat/restrict_post_types', 'your_theme_name_restrict_post_types' );
  2. function your_theme_name_restrict_post_types( $post_types ) {
  3. array_push($post_types, 'wc_user_membership' );
  4. return $post_types;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement