Register now or log in to join your professional community.
Using this feature you can set the maximum allowed width for any content in the theme, like oEmbeds and images added to posts.
Themes need to specify the $content_width variable in the function.php file, like so:
if ( ! isset( $content_width ) ) {$content_width =;}
$content_width is a theme feature using this feature you can set the maximum allowed width for any content in the theme, like oEmbeds and images added to posts.
By using this you can set the maximum allowed width for any content in the theme, like oEmbeds and images added to posts.
Using this theme feature, WordPress can scale oEmbed code to a specific size (width) in the front-end, and insert large images without breaking the main content area. Also, using this feature you lay the ground for other plugins to perfectly integrate with any theme, since plugins can access the value stored in $content_width.
if ( ! isset( $content_width ) ) { $content_width = 600; }And @Adel Ezat Fawzy Ellozy thanks for the invitation Sir!!!Have a nice day,Regards,
Content Width is a theme feature, first introduced in Version 2.6. Using this feature you can set the maximum allowed width for any content in the theme, like oEmbeds and images added to posts.
Using this theme feature, WordPress can scale oEmbed code to a specific size (width) in the front-end, and insert large images without breaking the main content area. Also, using this feature you lay the ground for other plugins to perfectly integrate with any theme, since plugins can access the value stored in $content_width.
Contents Adding Theme SupportSince Version 2.6, themes need to specify the $content_width variable in the functions.php file, like so:
if ( ! isset( $content_width ) ) { $content_width = 600; }It's also recommended to add the following CSS to your theme:
.size-auto, .size-full, .size-large, .size-medium, .size-thumbnail { max-width: 100%; height: auto; }Notes: This variable is also used when displaying a pop-up selection in the Media Editor. If you have used the global $_wp_additional_image_sizes to allow a pop-up of your custom image sizes defined using add_image_size() then the $content_width will override the width specified by your add_image_size() function. (The array $_wp_additional_image_sizes is covered inget_intermediate_image_sizes() and basically holds the name/height/width of your various image sizes available.)