Change the default size of Vimeo / Youtube in Wordpress

How to resize attachments of Vimeo / Youtube?

Currently, the built-in default is very small 300x150, I need at least 540px :(

Using snippet for filtering in functions.php, the code does not work.

function rezzz_embed_defaults($defaults) { $defaults['width'] = 350; $defaults['height'] = 200; return $defaults; } add_filter('embed_defaults','rezzz_embed_defaults'); 

See screenshot → http://i.imgur.com/kv8SPEA.png

0
source share
1 answer


Please read your code carefully. I used your code, but changed the width and height.

 function rezzz_embed_defaults($defaults) { $defaults['width'] = 540; $defaults['height'] = 304; return $defaults; } add_filter('embed_defaults','rezzz_embed_defaults'); 

You need to provide the width and height in the right ratio for using videos from youtube, vimeo and another source.

You can see a working demo of the above code here

+1
source

Source: https://habr.com/ru/post/981366/


All Articles