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

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/ […]

Was This Tutorial Helpful?

Free

$0

Access only to all free tutorials per month.



Monthly

$75

Access to 10 premium tutorials per month.


Tutorial Request


Includes code guarantee and coding support.

Yearly

$500

Access to 15 premium tutorials per month.


Monthly Tutorial Request


Includes code guarantee and priority coding support.