Skip to content

Instantly share code, notes, and snippets.

@robertito13
Created July 6, 2018 10:22
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 robertito13/cb08a4e4d9622bc84040ed99ff1601d1 to your computer and use it in GitHub Desktop.
Save robertito13/cb08a4e4d9622bc84040ed99ff1601d1 to your computer and use it in GitHub Desktop.
Videos de Facebook con ancho automático
<?php
function auto_width_facebook_video( $result, $url, $args, $post_id ) {
return preg_replace('/data-width="(\d+)"/', 'data-width="auto"', $result);
}
add_filter('embed_oembed_html', 'auto_width_facebook_video', 11, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment