-
Notifications
You must be signed in to change notification settings - Fork 384
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
Issue #864: Fix 'Video' widget for YouTube and Vimeo, simplify 'Gallery' solution #921
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
218fc9d
Issue #864: Address an issue in 'Video' widgets for YouTube and Vimeo.
cb0f071
Issue #864: Only override video widget output if is_amp_endpoint().
6608df5
Issue #864: Align equals signs in response to Travis error.
76cf75f
Issue #864: Simply return the initial value, instead of ''.
9fab092
Issue #864: Remove the 'Gallery' widget subclass, in favor of a filter.
7c1f8fe
Issue #864: Move video override logic into embed handlers.
a330342
Issue #864: Handle a 'fixed-height' issue with 'Video' widgets.
13b52da
Revert "Issue #864: Handle a 'fixed-height' issue with 'Video' widgets."
ccba1c2
Issue #864: Video widget fixes, including width and height.
2e197d3
Issue #864: Fix an issue with the style placement, override 'Text.'
a6e7c36
Prevent suppressing inject_video_max_width_style if not in AMP endpoint
westonruter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
/** | ||
* Class AMP_Widget_Media_Video | ||
* | ||
* @since 0.7.0 | ||
* @package AMP | ||
*/ | ||
|
||
if ( class_exists( 'WP_Widget_Media_Video' ) ) { | ||
/** | ||
* Class AMP_Widget_Media_Video | ||
* | ||
* @since 0.7.0 | ||
* @package AMP | ||
*/ | ||
class AMP_Widget_Media_Video extends WP_Widget_Media_Video { | ||
|
||
/** | ||
* Overrides the parent callback that strips width and height values. | ||
* | ||
* @param string $html Video shortcode HTML output. | ||
* @return string HTML Output. | ||
*/ | ||
public function inject_video_max_width_style( $html ) { | ||
if ( is_amp_endpoint() ) { | ||
return $html; | ||
} | ||
return parent::inject_video_max_width_style( $html ); | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
/** | ||
* Class AMP_Widget_Text | ||
* | ||
* @since 0.7.0 | ||
* @package AMP | ||
*/ | ||
|
||
if ( class_exists( 'WP_Widget_Text' ) ) { | ||
/** | ||
* Class AMP_Widget_Text | ||
* | ||
* @since 0.7.0 | ||
* @package AMP | ||
*/ | ||
class AMP_Widget_Text extends WP_Widget_Text { | ||
|
||
/** | ||
* Overrides the parent callback that strips width and height attributes. | ||
* | ||
* @param array $matches The matches returned from preg_replace_callback(). | ||
* @return string $html The markup, unaltered. | ||
*/ | ||
public function inject_video_max_width_style( $matches ) { | ||
if ( is_amp_endpoint() ) { | ||
return $matches[0]; | ||
} | ||
return parent::inject_video_max_width_style( $matches ); | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This extends an abstract class, so this method has to be implemented. This isn't ideal, but editing this embed handler enables deleting the entire 'Gallery' widget subclass.