标签: joomla
如何删除当前页面的com_content缓存?
我试过的东西,但不起作用。
$cache =& JFactory::getCache(); $cache->clean(413, "com_content");
答案 0 :(得分:1)
<?php $cache =& JFactory::getCache(); $cache->cleanCache(413, "com_content"); ?>