mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
22 lines
302 B
PHP
22 lines
302 B
PHP
<?php
|
|
|
|
class UM_Cache {
|
|
|
|
function __construct() {
|
|
|
|
add_action( 'init', array(&$this, 'do_not_cache' ) );
|
|
|
|
}
|
|
|
|
/***
|
|
*** @needed for some cache plugins
|
|
***/
|
|
function do_not_cache() {
|
|
|
|
if ( um_is_core_uri() && ! defined( 'DONOTCACHEPAGE' ) ) {
|
|
define( "DONOTCACHEPAGE", true );
|
|
}
|
|
|
|
}
|
|
|
|
} |