Created
February 26, 2026 08:15
-
-
Save pirate-bot/6253b6cf19cd1dfece1f9227ce978fd7 to your computer and use it in GitHub Desktop.
Hide Optimole DAM tab during image model for non admins via custom CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action('admin_head', function () { | |
| $current_user = wp_get_current_user(); | |
| // Hide for Editors and Contributors | |
| if (in_array('editor', $current_user->roles) || in_array('contributor', $current_user->roles)) { | |
| echo '<style>button#menu-item-optimole { display: none !important; }</style>'; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment