user1876234
user1876234

Reputation: 857

Joomla clean current page (com_content) cache

How can I delete current's page com_content cache ?

Something what I tried, but not working.

$cache =& JFactory::getCache();
$cache->clean(413, "com_content");

Upvotes: 1

Views: 707

Answers (1)

underscore
underscore

Reputation: 6887

<?php
$cache =& JFactory::getCache();
$cache->cleanCache(413, "com_content");
?>

Upvotes: 1

Related Questions