我正在运行一个仅通过SSL / https进行通信的网站,因此,如果我使用http嵌入youtube视频,则会收到一条错误消息,指出该网站并不完全安全。是否可以重写某些内容,以便WordPress接受https并仍自动将添加到内容区域的youtube链接嵌入?现在,由于我尝试嵌入https youtube链接时,显示的只是URL,没有电影。
更新资料
我试图在functions.php中使用此代码添加提供程序,但它什么也没做:
wp_oembed_add_provider('https://youtu.be/*', 'https://youtube.com/oembed' );
wp_oembed_add_provider('#https://(www\.)?youtube.com/watch.*#i', 'https://youtube.com/oembed', true);
wp_oembed_add_provider('http://youtu.be/*', 'https://youtube.com/oembed' );
wp_oembed_add_provider('#http://(www\.)?youtube.com/watch.*#i', 'https://youtube.com/oembed', true);