Skip to content

Instantly share code, notes, and snippets.

@robertdevore
Created June 21, 2017 14:04
Show Gist options
  • Save robertdevore/5a1a230e5bd4eec610461a502be506aa to your computer and use it in GitHub Desktop.
Save robertdevore/5a1a230e5bd4eec610461a502be506aa to your computer and use it in GitHub Desktop.
change oembed from the_excerpt to the_content
<?php
add_filter( 'the_excerpt_embed', 'get_excerpt_embed' );
function get_excerpt_embed( $output ) {
return the_content();
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment