Skip to content

Instantly share code, notes, and snippets.

@AndreFCAmorim
Created November 6, 2022 15:54
Show Gist options
  • Save AndreFCAmorim/aff2f8e29662526e2e7ec0500172b340 to your computer and use it in GitHub Desktop.
Save AndreFCAmorim/aff2f8e29662526e2e7ec0500172b340 to your computer and use it in GitHub Desktop.
Set a max width for the embeds using oEmbed in the content
<?php
function wpcode_snippet_oembed_defaults( $sizes ) {
return array(
'width' => 400,
'height' => 280,
);
}
add_filter( 'embed_defaults', 'wpcode_snippet_oembed_defaults' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment