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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog

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.