Advertisement
hendrajeg

Hide CPT for non administrator

Apr 18th, 2022
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_action('init',function (){
  2.     if (! in_array('administrator',wp_get_current_user()->roles)) {
  3.         unregister_post_type('custom-post-template');
  4.         unregister_post_type('footer');
  5.         unregister_post_type('archive-template');
  6.         unregister_post_type('custom-mega-menu');
  7.     }
  8. },999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement