HTML code to clear cache code example
Example 1: no cache html
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
Example 2: w3 total cache clear cache programmatically
<?php
$w3_plugin_totalcache->flush_all();
?>