mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
18 lines
213 B
PHP
18 lines
213 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 );
|
|
|
|
}
|
|
|
|
} |