Advertisement
bastetmilo

Remove taxonomy widget

Jun 4th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function remove_custom_taxonomy()
  2. {
  3.     global $user_ID;
  4.     if ( ! current_user_can( 'manage_options' ) ) {
  5.     remove_meta_box('cpt_franchize_taxdiv', 'cpt_franchize', 'side' );
  6.     }    
  7. }
  8. add_action( 'admin_menu', 'remove_custom_taxonomy' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement