Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save salehahmadbabu/b493bad4aac04127aec8663a5481c9a4 to your computer and use it in GitHub Desktop.
Save salehahmadbabu/b493bad4aac04127aec8663a5481c9a4 to your computer and use it in GitHub Desktop.
function owp_remove_menu_items() {
if( !current_user_can( 'administrator' ) ):
remove_menu_page( 'edit-comments.php' );
remove_menu_page( 'edit.php?post_type=elementor_library&tabs_group=library' );
endif;
}
add_action( 'admin_menu', 'owp_remove_menu_items' );
add_action('admin_head', 'hide_templates_menu_for_users');
function hide_templates_menu_for_users() {
if( !current_user_can( 'administrator' ) ):
echo '<style>
.menu-icon-elementor_library{
display:none;
}
</style>';
remove_all_actions( 'admin_notices' );
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment