mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-08 17:38:26 +01:00
ed0da659bc
See #37827. Built from https://develop.svn.wordpress.org/trunk@38354 git-svn-id: http://core.svn.wordpress.org/trunk@38295 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
453 B
PHP
15 lines
453 B
PHP
<?php
|
|
/**
|
|
* Feed API
|
|
*
|
|
* @package WordPress
|
|
* @subpackage 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' ); |