Skip to content

Instantly share code, notes, and snippets.

@sidonaldson
Created January 22, 2016 15:20
Show Gist options
  • Select an option

  • Save sidonaldson/ed2a5b76114abd7d42b4 to your computer and use it in GitHub Desktop.

Select an option

Save sidonaldson/ed2a5b76114abd7d42b4 to your computer and use it in GitHub Desktop.
Add this to functions.php to remove the auto-embed feature of WP >=4
remove_shortcode( 'embed' );
remove_filter( 'the_content', [ $GLOBALS['wp_embed'], 'autoembed' ], 8 );
remove_filter( 'the_content', [ $GLOBALS['wp_embed'], 'run_shortcode' ], 8 );
remove_action( 'edit_form_advanced', [ $GLOBALS['wp_embed'], 'maybe_run_ajax_cache' ] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment