Advertisement
helgatheviki

Remove Types Marketing Metabox

Sep 14th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. function kia_remove_types_mb(){
  2.     $types = get_post_types(array('show_ui' => true));
  3.     foreach ( $types as $type ) {
  4.         remove_meta_box('wpcf-marketing', $type);
  5.     }
  6. }
  7. add_action( 'init', 'kia_remove_types_mb' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement