Add oEmbed support for ReverbNation.
props rhubbardreverb. fixes #33207. Built from https://develop.svn.wordpress.org/trunk@33745 git-svn-id: http://core.svn.wordpress.org/trunk@33713 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1f4ae40c03
commit
a6ea3624ef
|
@ -72,7 +72,8 @@ class WP_oEmbed {
|
||||||
'#https?://(.+)\.tumblr\.com/post/.*#i' => array( 'https://www.tumblr.com/oembed/1.0', true ),
|
'#https?://(.+)\.tumblr\.com/post/.*#i' => array( 'https://www.tumblr.com/oembed/1.0', true ),
|
||||||
'#https?://(www\.)?kickstarter\.com/projects/.*#i' => array( 'https://www.kickstarter.com/services/oembed', true ),
|
'#https?://(www\.)?kickstarter\.com/projects/.*#i' => array( 'https://www.kickstarter.com/services/oembed', true ),
|
||||||
'#https?://kck\.st/.*#i' => array( 'https://www.kickstarter.com/services/oembed', true ),
|
'#https?://kck\.st/.*#i' => array( 'https://www.kickstarter.com/services/oembed', true ),
|
||||||
'#https?://cloudup\.com/.*#i' => array( 'https://cloudup.com/oembed', true ),
|
'#https?://cloudup\.com/.*#i' => array( 'https://cloudup.com/oembed', true ),
|
||||||
|
'#https?://(www\.)?reverbnation\.com/.*#i' => array( 'https://www.reverbnation.com/oembed', true ),
|
||||||
);
|
);
|
||||||
|
|
||||||
if ( ! empty( self::$early_providers['add'] ) ) {
|
if ( ! empty( self::$early_providers['add'] ) ) {
|
||||||
|
@ -144,6 +145,8 @@ class WP_oEmbed {
|
||||||
* | Tumblr | tumblr.com | Yes | 4.2.0 |
|
* | Tumblr | tumblr.com | Yes | 4.2.0 |
|
||||||
* | Kickstarter | kickstarter.com | Yes | 4.2.0 |
|
* | Kickstarter | kickstarter.com | Yes | 4.2.0 |
|
||||||
* | Kickstarter | kck.st | Yes | 4.2.0 |
|
* | Kickstarter | kck.st | Yes | 4.2.0 |
|
||||||
|
* | ------------ | -------------------- | ----- | --------- |
|
||||||
|
* | ReverbNation | reverbnation.com | Yes | 4.4.0 |
|
||||||
*
|
*
|
||||||
* No longer supported providers:
|
* No longer supported providers:
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-33744';
|
$wp_version = '4.4-alpha-33745';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue