Skip to content

Instantly share code, notes, and snippets.

@johanguse
Last active January 6, 2022 12:50
Show Gist options
  • Save johanguse/c27275f8110a0290ff2aedf7cfc15657 to your computer and use it in GitHub Desktop.
Save johanguse/c27275f8110a0290ff2aedf7cfc15657 to your computer and use it in GitHub Desktop.
WordPress Remove EDIT button from Media Side on imagens
/**
* Add if you want to EDIT image edit option from Media Manager.
*/
foreach( array( 'post.php', 'post-new.php' ) as $hook )
add_action( "admin_print_styles-$hook", 'admin_styles_so_25894288');
function admin_styles_so_25894288() {
?>
<style>
.attachment-info .edit-attachment
{
display: none !important;
}
</style>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment