@amauric Voilà de quoi utiliser les dimensions de l’embed fournie par oEmbed.
// Retrait du filtre de tarteaucitron
remove_filter( 'embed_oembed_html', 'tarteaucitronjs_oembed_dataparse', PHP_INT_MAX, 4 );
/**
* Dans le cas d'un embed video, on utilise les dimensions fournies par l'embed plut?t que celles imposées par wp_embed_default()
* @see https://developer.www.ads-software.com/reference/functions/wp_embed_defaults/
*
* @see https://gist.github.com/jlengstorf/ce2470df87fd9a892f68 (Clear oEmbed post-meta cache before using "oembed_dataparse")
*/
function wrap_oembed_dataparse($return, $data, $url) {
if($data->type === 'video') {
$width = $data->width ? $data->width : '100%';
$height = $data->height ? $data->height : '100%';
if (strpos($url, "youtube.com")) {
parse_str( parse_url( $url, PHP_URL_QUERY ), $youtube_args );
if ($youtube_args['v'] != "") {
return "<script>jQuery(function() {(tarteaucitron.job = tarteaucitron.job || []).push('youtube');});</script><div class=\"youtube_player\" videoID=\"".$youtube_args['v']."\" width=\"". $width ."\" height=\"". $height ."\" theme=\"light\" rel=\"0\" controls=\"1\" showinfo=\"1\" autoplay=\"0\"></div>";
}
}
if (strpos($url, "vimeo.com")) {
$id = substr(parse_url($url, PHP_URL_PATH), 1);
if ($id != "") {
return "<script>jQuery(function() {(tarteaucitron.job = tarteaucitron.job || []).push('vimeo');});</script><div class=\"vimeo_player\" videoID=\"".$id."\" width=\"". $width ."\" height=\"". $height ."\"></div>";
}
}
if (strpos($url, "dailymotion.com")) {
$id = end(explode("/", $url));
if ($id != "") {
return "<script>jQuery(function() {(tarteaucitron.job = tarteaucitron.job || []).push('dailymotion');});</script><div class=\"dailymotion_player\" videoID=\"".$id."\" width=\"". $width ."\" height=\"". $height ."\" showinfo=\"1\" autoplay=\"0\"></div>";
}
}
}
return $return;
}
add_filter( 'oembed_dataparse', 'wrap_oembed_dataparse', 100, 3 );
A noter que si le cache d’oEmbed n’est pas vide, cela pourrait ne pas avoir d’effet.
Il faut vider le cache grace au code fourni ici -> https://gist.github.com/jlengstorf/ce2470df87fd9a892f68#gistcomment-3470089
Voilà, je pense que tout y est ??