-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for source
screset
#1003
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm getting some warnings in the editor which result from the WP media template's and
php/class-delivery.php
Outdated
if ( ! empty( $third_party_change ) ) { | ||
Utils::log( $third_party_change, 'third-party-loading' ); | ||
|
||
return null; | ||
} | ||
$raw_url = $attributes['src']; | ||
$raw_url = 'source' === $tag_element['tag'] ? $attributes['srcset'] : $attributes['src']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❗️issue
I'm getting warnings here which come from wp-includes/media-template.php
eg here and the video and audio <source>
tags.
No description provided.