Files
ultimatemember/includes/admin/templates/dashboard/cache.php
T
2017-10-31 15:49:48 +02:00

17 lines
381 B
PHP

<?php
$all_options = wp_load_alloptions();
$count = 0;
foreach ( $all_options as $k => $v ) {
if ( strstr( $k, 'um_cache_userdata_' ) !== false ) {
$count++;
}
}
?>
<p>Run this task from time to time to keep your DB clean.</p>
<p><a href="<?php echo add_query_arg( 'um_adm_action', 'user_cache' ); ?>" class="button">Clear cache of <?php echo $count; ?> users</a></p>