We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20a505b commit 7fa0abfCopy full SHA for 7fa0abf
plugins/links/oembed-rich.js
@@ -6,6 +6,12 @@ export default {
6
return;
7
}
8
9
+ // Some oembed rich publishers have WordPress /blogs. Allow rich media and ignore WP blogs.
10
+ var isWordpress = /wp\-embedded\-content/.test(oembed.html);
11
+ if (isWordpress) {
12
+ return;
13
+ }
14
+
15
var rels = [CONFIG.R.oembed];
16
17
if (whitelistRecord.isAllowed('oembed.rich', "reader")) {
0 commit comments