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:
azaozz 2009-04-09 13:23:10 +00:00
parent 7d2cea69a8
commit 005fd4f14f

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