Change Content Width For Embedded Media

Most child themes include code which determines the default embed sizes for videos and other embedded media.

You can also change these values or add your own which effect all media embeds globally.

Here’s an example of what you’ll find in all StudioPress child themes:

$content_width = apply_filters( 'content_width', 740, 740, 1140 );

And here’s some code you can add to other child themes:

if ( ! isset( $content_width ) )
	$content_width = 600;

You can also add a height to this code:

if ( ! isset( $content_width ) )
$content_width = 600;
$content_height = 300;

But what if you only want to change the embed size on one specific page or post? You can also do this using a custom function which includes a conditional tag.

Learn how to change the content width for media embeds conditionally


Comments

One response to “Change Content Width For Embedded Media”

  1. […] Or visit this link: http://wpsites.net/web-design/change-content-width-for-embedded-media-conditionally/ […]

Leave a Reply

Join 5000+ Followers

Get The Latest Free & Premium Tutorials Delivered The Second They’re Published.