Files
ultimatemember/core/um-cache.php
T
ultimatemember 5815557192 Update 1.0.85
2015-03-14 23:39:33 +02:00

19 lines
221 B
PHP

<?php
class UM_Cache {
function __construct() {
add_action( 'init', array(&$this, 'do_not_cache' ) );
}
function do_not_cache() {
if ( um_is_core_uri() ) {
define( "DONOTCACHEPAGE", true );
}
}
}