Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Remove CPT menu on spesific roles.
- */
- function restrict_cpt_on_dashboard() {
- if ( is_admin() ) {
- $user = wp_get_current_user();
- $restricted_roles = array( 'author', 'contributor' );
- if ( array_intersect( $restricted_roles, $user->roles ) ) {
- remove_menu_page( 'edit.php?post_type=elementor_library' ); /* remove elementor library */
- }
- }
- }
- /**
- * Remove CPT on menu bar on spesific roles.
- */
- function remove_cpt_on_menu_bar( $wp_admin_bar ) {
- $user = wp_get_current_user();
- $restricted_roles = array( 'author', 'contributor' );
- if ( array_intersect( $restricted_roles, $user->roles ) ) {
- $wp_admin_bar->remove_node( 'new-e-floating-buttons' ); /* remove floating elements */
- $wp_admin_bar->remove_node( 'new-elementor_library' ); /* remove elementor library */
- }
- }
- add_action( 'admin_menu', 'restrict_cpt_on_dashboard', 999 );
- add_action( 'admin_bar_menu', 'remove_cpt_on_menu_bar', 999 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement