惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
The Cloudflare Blog
IT之家
IT之家
V
V2EX
雷峰网
雷峰网
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
A
About on SuperTechFans
B
Blog
月光博客
月光博客
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI

WordPress Plugin

How to Create an Audio Player Playlist from an XML File Copy Audio URL in Wonder Audio Player Wonder Lightbox JavaScript Events | WordPress Plugin How to Create a WordPress Gallery from an XML File How to Remove URL Query Parameters in Wonder Lightbox How to Dynamically Create a WordPress Image and Video Gallery Using WordPress Media Library IDs How to Add an Image to the Lightbox Gallery Without Showing It in the Grid Gallery How to Make the PDF Page Fit the Entire Lightbox Width When Opening a PDF File Double Tap to Play or Pause the WordPress Audio Player on Touch Devices
YouTube Error 153 | WordPress Plugin
2025-11-05 · via WordPress Plugin

A good understanding of web development is required to follow this article.

If your embedded YouTube videos have suddenly stopped playing on your website, you are not alone. Instead of loading the player, they may now display the message "Error 153: Video player configuration error."

YouTube Error 153

If you right-click on the error screen and select "Copy debug info," you’ll find the following text in the copied data:

"debug_error": "{\"errorCode\":\"embedder.identity.missing.referrer\"

The cause of this issue is the referrer policy. YouTube expects a valid referrer. When the embedded YouTube URL loads on a page where the referrer policy is set to "no-referrer," it triggers Error 153. This was likely tolerated previously, but Google appears to have tightened the policy recently, which has led to the problem.

To confirm the problem, open your webpage in Google Chrome, open Developer Tools, switch to the Network tab, find the YouTube embed link, click it, and check the Referrer Policy value in the Headers tab on the right.

YouTube-no-referrer

To fix the problem, you will need to change the referrer policy of the YouTube embed URL from "no-referrer" to another value, for example, "strict-origin-when-cross-origin", which is a common value.

The "no-referrer" policy may be inherited from your webpage. Open your webpage in Google Chrome, open Developer Tools, switch to the Network tab, find the page URL, click it, and then check the Referrer Policy in the Headers tab on the right.

page-referrer

If the value is "no-referrer," it may have been configured by your web hosting provider, set in the .htaccess file in your WordPress directory, or enforced by a WordPress security plugin.

If the page already has the correct referrer policy (for example, "strict-origin-when-cross-origin"), check if there is a referrerpolicy value configured in the YouTube embed code. An iframe can include a referrerpolicy attribute, which influences the policy for that frame.

The policy of the YouTube embed URL could also be affected by a meta tag on the page. For example, the following code forces all links on the page to use the “no-referrer” policy:

<meta name="referrer" content="no-referrer">
<meta name="referrer" content="never">

This meta tag may have been added by your WordPress theme or dynamically inserted by a third-party plugin. In Google Developer Tools, switch to the Elements tab, search for the word "meta", and check whether such a tag exists.