Coding Standards: Move wp-includes/class-oembed.php to wp-includes/class-wp-oembed.php.

This renames the file containing the `WP_oEmbed` class to conform to the coding standards.

This commit also includes:

- A new `class-oembed.php` that includes the new file, for anyone that may've been including the file directly.
- Replaces references to the old filename with the new filename.

See #47632.



git-svn-id: https://develop.svn.wordpress.org/trunk@45663 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast
2019-07-19 04:31:40 +00:00
parent e0d8dbe350
commit 4943b377ce
5 changed files with 759 additions and 744 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ class Tests_WP_oEmbed extends WP_UnitTestCase {
public function setUp() {
parent::setUp();
require_once ABSPATH . WPINC . '/class-oembed.php';
require_once ABSPATH . WPINC . '/class-wp-oembed.php';
$this->oembed = _wp_oembed_get_object();
$this->pre_oembed_result_filtered = false;