如何在更新rss文件时强制刷新?无论如何,它似乎都是缓存......
Feed使用simplepie fetch_feed()方法位于WordPress仪表板小部件中...
/* Dashboard Widget */
function my_dashboard_widget_function() {
$rss = fetch_feed( "http://mysite.com/feed.rss" );
if ( is_wp_error($rss) ) {
if ( is_admin() || current_user_can('manage_options') ) {
echo '<p>';
printf(__('<strong>RSS Error</strong>: %s'), $rss->get_error_message());
echo '</p>';
}
return;
}
答案 0 :(得分:0)
add_filter('wp_feed_cache_transient_lifetime',create_function('$ a','return 3600;'));
//其中3600是缓存持续时间,以秒为单位。