php 使WordPress默认视频嵌入响应
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使WordPress默认视频嵌入响应相关的知识,希望对你有一定的参考价值。
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container iframe, .video-container object, .video-container embed, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
/* Add responsive container to embeds
/* ------------------------------------ */
function alx_embed_html( $html ) {
return '<div class="video-container">' . $html . '</div>';
}
add_filter( 'embed_oembed_html', 'alx_embed_html', 10, 3 );
add_filter( 'video_embed_html', 'alx_embed_html' ); // Jetpack
以上是关于php 使WordPress默认视频嵌入响应的主要内容,如果未能解决你的问题,请参考以下文章
php Wordpress响应式视频嵌入
php Wordpress响应式视频嵌入
php 自动嵌入响应wordpress
php WordPress响应式嵌入
更改默认的 wordpress youtube 嵌入视频尺寸
从youtube嵌入缩略图和视频(php - Wordpress)