[width] make size of youtube in post larger
Inspect using Firefox the element you see currently youtube width = 764px
I want it be bigger
[width] make size of youtube in post larger
Inspect using Firefox the element you see currently youtube width = 764px
I want it be bigger
OKAY solution is here.
mesocolumn-wautom is the child theme I am using.
D:\wautom\wp-content\themes\mesocolumn-wautom\functions.php
Add this:
///////////////////////////////////////////////////////
// Make youtube display bigger
add_filter( ’embed_defaults’, ‘bigger_embed_size’ );
function bigger_embed_size()
{
return array( ‘width’ => 880, ‘height’ => 520 );
}
///////////////////////////////////////////////////////