Skip to content

Instantly share code, notes, and snippets.

@alexsoyes
Created July 24, 2021 14:32
Show Gist options
  • Save alexsoyes/cb2a8545a80dc9dff171fd78a81af95d to your computer and use it in GitHub Desktop.
Save alexsoyes/cb2a8545a80dc9dff171fd78a81af95d to your computer and use it in GitHub Desktop.
Remove WP Embed
<?php
function my_deregister_scripts()
{
wp_dequeue_script( 'wp-embed' );
}
add_action( 'wp_footer', 'my_deregister_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment