Advertisement
isaacadams

Remove Jetpack's External Media feature

Jan 2nd, 2024
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /**
  2. * Remove Jetpack's External Media feature.
  3. */
  4. add_action(
  5. 'enqueue_block_assets',
  6. function () {
  7. $disable_external_media = <<<JS
  8. document.addEventListener( 'DOMContentLoaded', function() {
  9. wp.hooks.removeFilter( 'blocks.registerBlockType', 'external-media/individual-blocks' );
  10. wp.hooks.removeFilter( 'editor.MediaUpload', 'external-media/replace-media-upload' );
  11. } );
  12. JS;
  13. wp_add_inline_script( 'jetpack-blocks-editor', $disable_external_media );
  14. }
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement