kollapsminoriteten/wp-includes/class-oembed.php

16 lines
401 B
PHP
Raw Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
2019-11-15 22:59:44 +01:00
* API for fetching the HTML to embed remote content based on a provided URL.
2019-11-02 10:38:58 +01:00
*
2019-11-15 22:59:44 +01:00
* This file is deprecated, use 'wp-includes/class-wp-oembed.php' instead.
2019-11-02 10:38:58 +01:00
*
2019-11-15 22:59:44 +01:00
* @deprecated 5.3.0
2019-11-02 10:38:58 +01:00
* @package WordPress
* @subpackage oEmbed
*/
2022-12-15 17:47:31 +01:00
_deprecated_file( basename( __FILE__ ), '5.3.0', WPINC . '/class-wp-oembed.php' );
2019-11-02 10:38:58 +01:00
2019-11-15 22:59:44 +01:00
/** WP_oEmbed class */
2022-12-15 17:47:31 +01:00
require_once ABSPATH . WPINC . '/class-wp-oembed.php';