mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
Use cached feed data on the Dashboard, props DD32, #9483
git-svn-id: http://svn.automattic.com/wordpress/trunk@10901 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7d2cea69a8
commit
005fd4f14f
@ -838,20 +838,14 @@ function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = ar
|
||||
$check_urls = array( $widgets[$widget_id]['url'] );
|
||||
}
|
||||
|
||||
|
||||
/* TODO Cache check here.
|
||||
include_once ABSPATH . WPINC . '/class-feed.php';
|
||||
foreach ( $check_urls as $check_url ) {
|
||||
|
||||
if ( 'HIT' !== $status ) {
|
||||
$cache = new WP_Feed_Cache_Transient('', md5($check_url), '');
|
||||
if ( ! $cache->load() ) {
|
||||
echo $loading;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
// Always load async until above fixed.
|
||||
echo $loading;
|
||||
return false;
|
||||
|
||||
if ( $callback && is_callable( $callback ) ) {
|
||||
$args = array_slice( func_get_args(), 2 );
|
||||
|
Loading…
Reference in New Issue
Block a user