使用 Simplepie fetch_feed() 管理 RSS 缓存
rss 文件更新后如何强制刷新?无论如何,它似乎都在缓存...
该提要使用 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;
}
How can I force a refresh when the rss file has been updated? It appears to be caching no matter what...
The feed is located in a WordPress dashboard widget using the simplepie fetch_feed() method...
/* 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;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
add_filter( 'wp_feed_cache_transient_lifetime', create_function( '$a', 'return 3600;' ) );
//其中3600是缓存持续时间(以秒为单位)。
add_filter( 'wp_feed_cache_transient_lifetime', create_function( '$a', 'return 3600;' ) );
//Where 3600 is the cache duration in seconds.