嗯,我不确定,但我认为整个缓存应该在发布新帖子时失效。。。您是否尝试在W3TC中启用调试信息并检查这些页面为什么没有刷新?
至于手动缓存清除,来自插件的常见问题:
How can I flush the cache without
using the WP Admin interface?
可以清空整个缓存,也可以简单地清除单个帖子/页面的缓存:
清除整个页面缓存:if
(function_exists(\'w3tc_pgcache_flush\'))
{ w3tc_pgcache_flush(); }
通过传递单个帖子/页面的ID来清除该帖子/页面:
if
(function_exists(\'w3tc_pgcache_flush_post\'))
{ w3tc_pgcache_flush_post($post_id);
}