Skip to content

Instantly share code, notes, and snippets.

@pirate-bot
Created February 26, 2026 08:15
Show Gist options
  • Select an option

  • Save pirate-bot/6253b6cf19cd1dfece1f9227ce978fd7 to your computer and use it in GitHub Desktop.

Select an option

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
<?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