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
| add_action('admin_head', 'oxygen_support_fix_gutenberg_image'); | |
| function oxygen_support_fix_gutenberg_image() { | |
| echo '<style> | |
| /* WordPress 6.8 CSS Override to allow images to be changed in Gutenberg */ | |
| .wp-block img.ct-image:not([draggable]) { | |
| pointer-events: unset !important; | |
| } | |
| </style>'; | |
| } |