Skip to content

Instantly share code, notes, and snippets.

@keoshi
Created December 4, 2018 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keoshi/57ea430f324eaa350f5b0fb80cf2c75e to your computer and use it in GitHub Desktop.
Save keoshi/57ea430f324eaa350f5b0fb80cf2c75e to your computer and use it in GitHub Desktop.
Dequeue and deregister Facebook embed from Jetpack site
function keoshi_dequeue_facebook_embed() {
wp_dequeue_script( 'jetpack-facebook-embed' );
wp_deregister_script( 'jetpack-facebook-embed');
}
add_action( 'wp_enqueue_scripts', 'keoshi_dequeue_facebook_embed', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment