Use cached feed data on the Dashboard, props DD32, #9483

git-svn-id: https://develop.svn.wordpress.org/trunk@10901 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-04-09 13:23:10 +00:00
parent 8fff49b43a
commit ce54daf6ef
1 changed files with 3 additions and 9 deletions

View File

@ -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 );