author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 16 | a86126ab1dd4 |
child 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3 |
* Feed API |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5 |
* @package WordPress |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
6 |
* @subpackage Feed |
16 | 7 |
* @deprecated 4.7.0 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
8 |
*/ |
0 | 9 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
_deprecated_file( basename( __FILE__ ), '4.7.0', 'fetch_feed()' ); |
0 | 11 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
if ( ! class_exists( 'SimplePie', false ) ) { |
16 | 13 |
require_once ABSPATH . WPINC . '/class-simplepie.php'; |
0 | 14 |
} |
15 |
||
16 | 16 |
require_once ABSPATH . WPINC . '/class-wp-feed-cache.php'; |
17 |
require_once ABSPATH . WPINC . '/class-wp-feed-cache-transient.php'; |
|
18 |
require_once ABSPATH . WPINC . '/class-wp-simplepie-file.php'; |
|
19 |
require_once ABSPATH . WPINC . '/class-wp-simplepie-sanitize-kses.php'; |