diff --git a/wp-includes/class-wp-oembed.php b/wp-includes/class-wp-oembed.php index 3cd365ba68..8d47851599 100644 --- a/wp-includes/class-wp-oembed.php +++ b/wp-includes/class-wp-oembed.php @@ -109,6 +109,7 @@ class WP_oEmbed { '#https?://([a-z]{2}|www)\.pinterest\.com(\.(au|mx))?/.*#i' => array( 'https://www.pinterest.com/oembed.json', true ), '#https?://(www\.)?wolframcloud\.com/obj/.+#i' => array( 'https://www.wolframcloud.com/oembed', true ), '#https?://pca\.st/.+#i' => array( 'https://pca.st/oembed.json', true ), + '#https?://((play|www)\.)?anghami\.com/.*#i' => array( 'https://api.anghami.com/rest/v1/oembed.view', true ), ); if ( ! empty( self::$early_providers['add'] ) ) { @@ -188,6 +189,7 @@ class WP_oEmbed { * | WolframCloud | wolframcloud.com | 5.9.0 | * | Pocket Casts | pocketcasts.com | 6.1.0 | * | Crowdsignal | crowdsignal.net | 6.2.0 | + * | Anghami | anghami.com | 6.3.0 | * * No longer supported providers: * diff --git a/wp-includes/version.php b/wp-includes/version.php index f4ab775bb5..a9c2a6d9f0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55960'; +$wp_version = '6.3-alpha-55961'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.