我最近將我的Wordpress v4.3.1博客更改爲HTTPS
,導致YouTube視頻停止工作。顯示空白區域而不是視頻播放器。這是因爲當頁面通過https
服務時,Firefox阻止http
內容。Force Wordpress使用https嵌入
Wordpress將帖子中的YouTube鏈接轉換爲iframe
HTML代碼,但似乎忽略了https
。
我使用簡碼如下試過了,沒有成功:
[youtube=https://www.youtube.com/watch?v=IxZ_ZznO2ek]
我也試過apply_filter
爲https://wordpress.org/support/topic/forcing-ssl-return-for-youtube-oembed但沒有成功說明。這可能與apply_filter
未正確應用有關。
$content = get_the_content();
add_filter('the_content', 'add_secure_video_options', 10);
$content = apply_filters('the_content', $content);
我還有其他選擇嗎?
不工作:( – bart