mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 07:05:37 +01:00
b41001d4a1
Several files were removed during 4.7 that can be loaded externally, so we need to keep them, though their use is now deprecated. Merges [39449], [39450], [39453], [39455], and [39456] to the 4.7 branch. Fixes #39027. Built from https://develop.svn.wordpress.org/branches/4.7@39459 git-svn-id: http://core.svn.wordpress.org/branches/4.7@39399 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
522 B
PHP
18 lines
522 B
PHP
<?php
|
|
/**
|
|
* Feed API
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Feed
|
|
*/
|
|
|
|
_deprecated_file( basename( __FILE__ ), '4.7.0', 'fetch_feed()' );
|
|
|
|
if ( ! class_exists( 'SimplePie', false ) ) {
|
|
require_once( ABSPATH . WPINC . '/class-simplepie.php' );
|
|
}
|
|
|
|
require_once( ABSPATH . WPINC . '/class-wp-feed-cache.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-feed-cache-transient.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-simplepie-file.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-simplepie-sanitize-kses.php' ); |